Welcome to the daily AI news brief for vibe coders. It is Tuesday, July 14, 2026, and the model tier you build against just moved underneath you. OpenAI’s GPT-5.6 family is now broadly available, Google is pointing at July 17 for Gemini 3.5 Pro, and Anthropic quietly fixed the Claude Code bug that has been killing long-running MCP tool calls. If you ship on Shopify, Claude, GPT, Gemini, or Firebase, all three land in your codebase this week.
TL;DR
- GPT-5.6 ships in three variants: Sol, Terra, Luna. Pick per workload.
- Claude Code now honors per-server MCP
request_timeout_ms. Slow tools stop timing out. - Gemini 3.5 Pro targets July 17. Specs and pricing unconfirmed.
- Anthropic is localizing Claude pricing in India, its largest non-US market.
- Meta’s Iris chip enters production in September.
- Build of the day: an MCP tool that audits your Shopify product copy.
OpenAI ships the GPT-5.6 family and ChatGPT Work
What shipped. OpenAI rolled out GPT-5.6 on July 9 in three variants: Sol as the top-end reasoning model, Luna tuned for speed, and Terra as the everyday balance. A ChatGPT Work desktop app launched alongside it, and the rollout followed a staggered, government-reviewed process rather than a single flip of the switch.
Why it matters for vibe coders. A three-variant family is a routing decision, not a model decision. You no longer pick “the good one.” You pick per task, and the cost delta between Luna and Sol is the difference between a feature that pencils out and one that does not.
What to do today. Audit every LLM call in your app and label it: latency-critical, reasoning-critical, or neither. That label is your model router. (Axios)
Claude Code fixes the MCP timeout that has been silently killing your tools
What shipped. Anthropic’s July Claude Code changelog patches a real one: MCP servers configured through --mcp-config or .mcp.json were ignoring a per-server request_timeout_ms, so long-running MCP tool calls died at the 60-second default in fresh sessions. The same release fixes memory leaks, including MCP stdio server stderr accumulating up to 64 MB per server and unbounded growth in headless and SDK sessions from large tool-result payloads. Claude Sonnet 5 is now the default model, with a 1M-token context window.
Why it matters for vibe coders. If you have ever written an MCP tool that hits a slow API and watched it die at exactly one minute, this was the bug. It was not your code. The headless leak matters more if you run agents on a schedule, where unbounded memory growth goes unnoticed until the box falls over.
What to do today. Update Claude Code. Then set an explicit request_timeout_ms on any MCP server that touches a slow upstream, and stop working around a bug that no longer exists. (Releasebot)
Gemini 3.5 Pro targets July 17, and nothing else is confirmed
What shipped. Nothing yet. Google is reportedly targeting July 17 for Gemini 3.5 Pro general availability after a full architectural rebuild aimed at mathematical reasoning, SVG generation, and image quality. Google has not confirmed the date, the context window, or the pricing.
Why it matters for vibe coders. This is a planning signal, not a build signal. Treat July 17 as a rumor with a date attached, and refuse to architect around numbers nobody has published.
What to do today. If your Gemini integration hardcodes a model ID, wrap it behind an environment variable now so the swap is a config change, not a deploy. (TechTimes)
Anthropic starts localizing Claude pricing for India
What shipped. Anthropic has begun localizing Claude’s pricing in India, which is its biggest market after the United States.
Why it matters for vibe coders. Localized pricing is a distribution move. The market Anthropic optimizes for is no longer just US enterprise, and the floor drops for indie developers building agent products for a very large developer population.
What to do today. If you ship a paid AI product, check where your API spend and your customer geography overlap. Model pricing is now regional. Your margin model should be too. (TechCrunch)
Also worth noting
- Anthropic launched Claude Corps, a paid 12-month fellowship placing early-career people inside nonprofits. No degree required.
- Project Glasswing, Anthropic’s program for fixing vulnerabilities in critical software, expanded from 50 partner organizations to 150 across 15 countries.
- Meta begins manufacturing its custom Iris data-center AI chip in September, built with Broadcom and TSMC, targeting 14 gigawatts of compute by 2027.
- The New York Times and other publishers filed a motion seeking court sanctions against OpenAI, alleging it withheld evidence about training data.
- Anthropic hired Tom Blomfield, co-founder and former CEO of Monzo, onto its AI compute team.
Build of the day
Write an MCP tool that audits your Shopify product descriptions. Two hours, one file. Point it at the Shopify Admin API, pull every product, and flag three things: description under 80 words, missing alt text on the primary image, and no material or care detail in the body copy. Return structured JSON so Claude Code can fix them in a loop. Now that per-server request_timeout_ms is honored, set it to 120 seconds and paginate the full catalog in one call instead of chunking around a timeout you no longer have. Your model does the judgment. Your tool does the fetching.
FAQ
Which GPT-5.6 variant should I use for a Shopify storefront app?
OpenAI shipped three: Sol for the heaviest reasoning, Luna for speed, and Terra as the balanced everyday option (Axios). For a storefront, most calls are latency-critical and low-complexity: product summaries, search reranking, support replies. Those belong on the fast variant. Reserve the top-end model for the few calls that involve multi-step reasoning, like generating a merchandising plan from sales data.
How do I stop MCP tool calls from timing out at 60 seconds?
Update Claude Code. The July changelog fixed a bug where MCP servers configured via --mcp-config or .mcp.json ignored a per-server request_timeout_ms, so calls hit the 60-second default in fresh sessions (Releasebot). After updating, set the timeout explicitly on any server touching a slow upstream API. If your tool still dies, the problem is now on your side.
Is Gemini 3.5 Pro out yet?
No. Reporting points to a July 17 general availability target after a full architectural rebuild, but Google has not confirmed the date, the context window, or the pricing (TechTimes). Treat every circulating spec as unverified. Build against the model IDs that actually exist in the API today, and keep the model name in configuration so you can swap it without a code change.
Should I rewrite my agent to use a multi-model router?
Only if you have more than one workload profile. A router earns its complexity when you have a clear split between cheap high-volume calls and expensive low-volume reasoning calls. If most of your traffic is one shape, a router adds a failure mode and saves you very little. Measure first: log token counts and latency per call site, then decide.
Does localized Claude pricing in India change what I pay?
It depends entirely on where you are billed. Anthropic has started localizing Claude pricing in India, its largest market outside the US (TechCrunch). The reporting covers the pricing move itself, not a specific rate card for other regions. Do not assume your own costs change. Check your billing console rather than inferring anything from a headline.
What is the fastest way to make my Shopify store legible to AI agents?
Structure first, prose second. Ship valid JSON-LD for every product and page, keep product copy factually specific, and make sure certifications and material claims appear as structured data rather than only as marketing text. Design Delight Studio’s certifications, for example, are GOTS, GRS, OCS, and PETA-Approved Vegan. An agent can only cite what it can parse.
Sources
- Axios — OpenAI releases GPT-5.6 and ChatGPT Work
- Releasebot — Claude Code updates by Anthropic, July 2026
- TechTimes — Gemini 3.5 Pro targets July 17 after full rebuild
- TechCrunch — Anthropic starts localizing Claude pricing for India
- Tech Startups — Top tech news today, July 13, 2026
About the author
Robert McCullock builds AI-assisted commerce systems at Design Delight Studio, working across Shopify Liquid, React, TypeScript, Python, and multi-agent architectures. See his work at the professional portfolio.
