Fetching from the wire…
Top 5 · 2026-06-21 · source-backed
This is the most useful engineering thing I read all week, and it's not a model. It's a pattern. Anthropic's engineering post on code execution with MCP describes laying out MCP tools as files in a code tree (think ./servers/google-drive/getDocument.ts) that the agent discovers by browsing and reads on demand, instead of loading every tool definition into context upfront. In their Google Drive to Salesforce example, that took a task from 150K tokens to 2K. A 98.7% cut.
If you've built anything serious with MCP, you've felt this pain. Every connected server dumps its full tool schema into the context window before the agent does a single thing. Connect a dozen servers and you've spent tens of thousands of tokens on definitions the agent will never touch this turn. It's the dumbest tax in agent engineering and almost everyone is paying it.
The fix is search-first. The New Stack reports the same idea from the other direction: replace static tool catalogs with 2-3 lightweight meta-tools that fetch full schemas on demand, and benchmarks show up to 160x fewer tokens at 100% task success. Cloudflare compressed 2,500 API endpoints into 2 tools for a 99.9% reduction. The other half of the trick is keeping intermediate data inside the execution environment so it never round-trips through the model's context at all.
The part I'll actually steal: pairing this with a ./skills/ directory and SKILL.md files so working implementations persist as a reusable toolbox across sessions. That's the bridge between "agent figures it out every time" and "agent has a standard library." My own pipeline centralizes tool definitions in a way that's exactly the antipattern here, and I'm refactoring it this week.
If you run more than two or three MCP servers, this isn't an optimization. It's the difference between an agent that can afford to think and one that spends its whole budget reading menus. Also default your tool results to small pages, 10-20 items with a has_more flag, so the agent chooses when to fetch more instead of you dumping the whole result set.
Each link below shares sources, entities, or timing with this story.
1. Flip your multi-model pipeline to review-then-generate. Instead of using a reasoning model to plan before code generation, let the specialist generate freely and use reasoning tokens for review. Paper shows 90.2% pass@1 vs 87.2% for the planning pattern. Source 2. Audit you...
Barry Zhang and Mahesh Murag, the engineers who built Claude Skills at Anthropic, published a talk and engineering post that's gotten 14K+ likes and is reshaping how I think about agent development. The core argument: most agent approaches fail because they lack domain experti...
A solo Claude Opus 4.5 agent spent $9 and 20 minutes building a retro game. It was broken. The same model, wrapped in Anthropic's multi-agent harness, spent $200 over 6 hours and produced a fully playable game with physics, sprite editors, and AI integration. Anthropic's engin...
If you wrote an MCP server before July, it's on a protocol shape the maintainers have already removed. Not deprecated-with-a-migration-window. Removed from the spec. MCP lead maintainers David Soria Parra and Den Delimarsky published an updated roadmap on August 22, and the re...
$688 billion in hyperscaler AI capex against $110 billion of revenue. No capex breakeven until 2031 or 2032. Those are Scale Venture Partners' Rory O'Driscoll's numbers from SaaStr AI 2026, and they're the backdrop for the most useful strategy conversation I've read this month...
This is the most immediately useful pattern I've seen this month. Cloudflare shipped Code Mode MCP, and the numbers are hard to argue with. Their API has 2,500+ endpoints. Exposing each one as a separate MCP tool would consume 1.17 million tokens of context just for tool defin...
MindPattern daily
One email a day at 7 AM. Sources and a take on every story. Unsubscribe anytime.