CLAUDE CODE ADDS MCP TOOL SEARCH TO CUT CONTEXT BLOAT
Anthropic updated Claude Code with MCP Tool Search, which lazy-loads tool definitions and only fetches them when needed. When tool docs would exceed ~10% of the...
Anthropic updated Claude Code with MCP Tool Search, which lazy-loads tool definitions and only fetches them when needed. When tool docs would exceed ~10% of the model’s context, Claude loads a lightweight search index and pulls specific tools on demand, avoiding preloading tens of thousands of tokens (e.g., setups reporting 67k+ tokens; a Docker MCP server at 125k).
Frees significant context for code, logs, and tasks, improving accuracy and latency.
Enables larger MCP toolsets without paying a heavy startup token cost.
-
terminal
Benchmark token usage, response latency, and task success rates before/after enabling Tool Search across multi-server MCP setups.
-
terminal
Create end-to-end tests that ensure the search-index selects the correct tools and add fallbacks if retrieval misses.
Legacy codebase integration strategies...
- 01.
Upgrade Claude Code and audit existing MCP servers (especially >50 tools) for compatibility and behavior shifts in tool resolution.
- 02.
Review prompts/workflows that relied on preloaded tool docs and validate critical flows (build, deploy, CI) still pick the intended tools.
Fresh architecture paradigms...
- 01.
Design agents around many small, composable tools and rely on Tool Search to scale instead of manual pruning.
- 02.
Keep tool metadata concise and consistent to improve retrieval quality, and set context budgets with monitoring for the 10% threshold.