If you have watched an AI agent confidently call the wrong tool — booking a calendar slot when you asked it to draft an email, or querying the billing API when the question was about inventory — you have met the single most common reason mid-market AI projects stall. It is rarely the model being “dumb.” More often, the agent is drowning. When you hand a language model a giant pile of every tool it might ever need, all at once, its ability to pick the right one degrades fast. The fix that landed this month is almost insultingly simple: instead of force-feeding the agent every tool definition up front, you let it search for the tool it needs.
The numbers behind that change are the reason this belongs on your 2026 procurement checklist. According to MarkTechPost's reporting, Anthropic's own evaluations show Claude Opus 4 accuracy moving from 49% to 74% with Tool Search enabled — a 25-point swing from one architectural decision, not a new model. For a business owner deciding whether an “AI employee” is a deployable coworker or an expensive demo, that gap is the whole ballgame. This post unpacks what tool search actually does, why it works, and — most importantly — the plain-English questions you can hand any vendor to find out whether their agent does it.
Key Takeaways
- Letting an agent search for tools, instead of loading every tool schema at once, moved Opus 4 from 49% to 74% accuracy in Anthropic's evals — a 25-point reliability gain.
- The same approach reportedly cut tool-definition token usage by 85%, which lowers cost and latency on every turn.
- Tool schemas alone can consume up to 134,000 tokens; in real deployments, schema overhead routinely ate ~50% of the prompt.
- The mechanism is a “discover, then describe, then call” pattern — the agent finds candidate tools before committing.
- This is now a testable procurement question: ask any vendor whether their agent does dynamic tool discovery and what the eval delta is.
- It is a reliability lever, not a silver bullet — you still need evaluation, supervision, and authentication around it.
What Is MCP Tool Search, and Why Does Loading Every Tool Hurt Accuracy?
The Model Context Protocol (MCP) is the open standard for connecting AI models to external tools, data, and systems — the Model Context Protocol documentation describes it as a common interface so any compliant model can talk to any compliant tool server. That standardization is genuinely useful. It is also exactly why the “too many tools” problem got worse: once connecting tools is easy, teams connect dozens of them, and every one of those tools ships a schema that has to be loaded into the model's context.
Here is the cost. Per MarkTechPost, tool definitions can consume up to 134,000 tokens before any optimization. Research the article cites as “Tool Attention” measures the MCP tools tax at roughly 15,000 to 60,000 tokens per turn. In one real deployment described in the reporting, five MCP servers exposing 34 tools produced average prompt sizes around 45,000 tokens per turn — and about 22,000 of those tokens, roughly half, were nothing but tool-schema overhead. At cache-miss rates, that worked out to about $0.07 to $0.10 per turn just to keep reminding the model what tools exist.
Two things go wrong when you stuff all of that in. First, cost and latency climb on every single turn. Second, and worse for reliability, the model has to reason across a huge menu of options, and its tool-selection accuracy drops — the wrong-tool problem you have probably already seen.
Tool search flips the default. Rather than presenting all 34 tools, the system presents a tiny set of meta-tools and lets the agent query for what it needs. As Anthropic's engineering work on tool use and token efficiency has emphasized, the model performs better when its context holds only what is relevant to the task in front of it. Search-then-load is how you get there without manually pruning tools for every workflow.
How Does a 49%-to-74% Accuracy Jump Come From One Change?
The implementation that shipped this is the open-source Hermes Agent from Nous Research, which added a Tool Search feature, as detailed by MarkTechPost. The mechanics are worth understanding because they are what you are actually buying.
A bridge replaces the full set of tool schemas with three lightweight tools:
tool_search(query, limit?)— the agent describes what it is trying to do and gets back a short list of candidate tools.tool_describe(name)— the agent pulls the full schema for a specific candidate, only once it is interested.tool_call(name, arguments)— the agent actually invokes the chosen tool.
It is a discover, then inspect, then act loop — the same way a competent human employee would skim a directory before committing. A short list of core tools is never deferred: terminal, read_file, web_search, and send_message stay always-on so basic operation never depends on a search succeeding. By default, the search machinery activates when tool definitions would exceed 10% of the active model's context window, so small toolsets are left alone and only large ones get the treatment.
The reliability payoff shows up across model tiers. Per the reporting, Anthropic's evals show:
| Model | Accuracy without Tool Search | Accuracy with Tool Search |
|---|---|---|
| Claude Opus 4 | 49% | 74% |
| Claude Opus 4.5 | 79.5% | 88.1% |
Two readings matter here. The Opus 4 jump is dramatic because that model was struggling most with the cluttered context. But even Opus 4.5, already strong, gained nearly nine points — evidence this is not just propping up a weak model, it is removing a structural handicap. Alongside accuracy, the same approach reportedly delivered an 85% reduction in tool-definition token usage, so you get the reliability win and the cost win together. That combination is rare enough to be worth probing in a sales call.

What Should Mid-Market Buyers Actually Demand in a Vendor Eval?
This is where a research result becomes a purchase decision. The gap between a 49% agent and a 74% agent is the gap between “we shut the pilot down” and “we expanded it to two more departments.” So make it a contract-level question.
Ask every AI vendor, in plain language:
- Does your agent use dynamic tool discovery (tool search), or does it load every tool definition into context at once?
- What is your measured accuracy with and without that feature, on a task set that resembles ours? You want a delta, not a vibe.
- How many tools will my deployment expose, and at what point does schema overhead start crowding out the actual task?
- Which tools are always-on versus discovered on demand, and who decides?
- What does a single turn cost, and how much of that cost is tool-schema overhead versus real work?
If a vendor cannot answer question 2 with a number, that is your signal. An agent reliability claim without an eval delta is marketing. We recommend treating the with/without comparison the way you would treat a load test before signing an infrastructure contract — not optional. This is the same discipline we describe in our intent-based chaos testing approach, where you deliberately push an agent toward ambiguous requests to see whether it picks the right tool under stress.
Tool selection is also not the only failure mode worth a number. In our experience, buyers who fix tool discovery and stop there hit the next wall fast, which is why we walk clients through the production failure and audit gap — the difference between an agent that works in a demo and one whose behavior you can actually inspect after the fact.
Where Does Tool Search Fit in a Secure, Governed AI Deployment?
A higher accuracy number is good. A higher accuracy number you cannot govern is a liability. Tool search is one lever in a stack, and it pairs with two others that mid-market teams consistently underweight.
The first is authentication and authorization. Letting an agent dynamically discover and call tools is powerful precisely because it can reach more systems — which means the question of which tools it is allowed to discover and call is now a security control, not a footnote. We treat authentication as the other half of the same procurement conversation: if your agent can search a tool catalog, your gateway needs to scope that catalog per role, per task, and per data-sensitivity level. A secure AI gateway is where tool search and access control meet.

The second is supervision. Tool search reduces wrong-tool errors; it does not eliminate them. A reliability-first architecture wraps the working agent in a manager-agent supervisor layer that can catch and correct a bad tool choice before it acts on a customer record or a financial system. The eval delta tells you how often the worker gets it right; the supervisor is what you lean on for the remaining gap.
| Layer | What it controls | The buyer question |
|---|---|---|
| Tool search / discovery | Which tools enter context | “What is your eval delta with vs. without?” |
| Gateway / auth | Which tools are allowed | “Can you scope tool access per role and data class?” |
| Supervisor / manager agent | Catching bad actions | “How are wrong tool calls intercepted before execution?” |
Finally, none of this answers the strategic question of whether you bolt tool search onto an existing brittle agent or rebuild around it. That is a real fork, and we lay out how to choose in our rebuild-or-patch decision framework. The honest answer is that for some teams a patch is fine and for others it papers over a deeper design problem.
What Does Tool Search Cost, and Where Does It Fall Short?
A 25-point accuracy gain is the headline, but a procurement decision deserves the fine print. Tool search is a strong lever, not a cure-all, and the honest version of this story includes its limits.
Start with the obvious trade-off: searching for a tool is an extra step. Instead of having every schema already in context, the agent now spends a turn — sometimes more — to query, inspect, then call. For most workflows that round-trip is cheap next to the token and accuracy savings, but it is not free, and for a tiny toolset it can be pure overhead. That is precisely why the implementation described by MarkTechPost only engages the search machinery once tool definitions would exceed about 10% of the model's context window. Below that line, loading everything is simpler and faster. If a vendor bolts search onto a four-tool agent and calls it an upgrade, they have added latency for no reason.

The bigger caveat is that search quality is only as good as your tool descriptions. If two tools are described in vague, overlapping language, the agent's search will surface the wrong candidate just as readily as a cluttered context would — the failure simply moves upstream. Teams that win with tool search invest in clean, distinct tool metadata, and that is human work no model does for you.
Finally, treat the eval numbers as directional, not as a promise. The 49%-to-74% figure comes from a specific task set; your workflows, your tools, and your data will produce a different delta. That is the whole reason we push buyers to demand a with-and-without comparison on tasks that resemble their own rather than accepting a vendor's published benchmark. A reliability lever you cannot measure on your own work is a reliability lever you do not actually control — the same caution behind the production failure and audit gap, where demo metrics quietly diverge from real production behavior.
What Does This Mean for Allen County and DeKalb County Operators?
Most Northeast Indiana businesses we talk to — professional-services firms in Fort Wayne, manufacturers around Auburn and DeKalb County, home-services companies covering Allen County — do not have an ML team and never will. That is exactly the audience tool search helps, because it turns a deep technical reliability problem into a short list of questions a non-technical operator can ask without being snowed.
If your AI pilot stalled at the “the agent keeps picking the wrong tool” wall, here is a checklist you can hand any vendor on Monday, no data scientist required:
- Ask: “Does your agent search for tools, or load all of them at once?” Force-loading everything is the old, lower-accuracy default.
- Ask: “Show me your accuracy with and without tool search.” No number, no deal.
- Ask: “How many systems will it connect to here, and does that exceed your discovery threshold?” More connected tools is precisely when search starts to matter.
- Ask: “Which tools can it reach without asking, and how is that locked down?” This is your security answer.
- Ask: “When it gets a tool wrong, what stops the action?” That is your safety net.

For a Fort Wayne accounting firm or an Auburn shop floor, the practical upside is the same: an AI employee that reliably reaches for the right system is one you can actually let touch a workflow. One that guesses is one you babysit forever — which means it never saves the labor you bought it for. The technology to clear this wall now exists and is testable; you just have to ask the right five questions.
Frequently Asked Questions
Q1.What is MCP tool search?
MCP tool search is an architecture where an AI agent queries for the tools it needs instead of having every tool definition loaded into its context up front. It typically uses three lightweight functions — search for candidate tools, describe a specific one, then call it — so the model only loads the schema it actually intends to use.
Q2.How much did tool search improve agent accuracy?
According to MarkTechPost's reporting on Anthropic's evaluations, Claude Opus 4 accuracy rose from 49% to 74% with tool search enabled, and Claude Opus 4.5 rose from 79.5% to 88.1%. The same approach also reportedly reduced tool-definition token usage by about 85%.
Q3.Why does loading all tools at once lower accuracy?
When an agent must reason across a large menu of tools, it is more likely to select the wrong one, and the schemas crowd out task-relevant context. In one reported deployment, 34 tools across five MCP servers produced ~45,000-token prompts where roughly half was tool-schema overhead, which raises both cost and the chance of a wrong-tool error.
Q4.Does tool search work on strong models, or only weak ones?
It helped both. The largest gain was on Opus 4 (49% to 74%), but Opus 4.5 — already at 79.5% — still gained nearly nine points to 88.1%, which suggests tool search removes a structural handicap rather than merely compensating for a weak model.
Q5.What should I ask a vendor about agent reliability?
Ask whether the agent uses dynamic tool discovery, and demand the measured accuracy with and without it on a task set resembling yours. Also ask how many tools your deployment will expose, which tools are always-on versus discovered, and what a single turn costs including schema overhead.
Q6.Is tool search a complete solution for AI agent reliability?
No. It is one lever. It reduces wrong-tool selection but does not eliminate it, so you still need access controls to govern which tools an agent may reach and a supervisory layer to catch bad actions before they execute. Treat it as a necessary piece of a reliability stack, not the whole thing.
Q7.How does MCP tool search help a Fort Wayne or Northeast Indiana business without an ML team?
It turns a deep reliability problem into a short vendor checklist a non-technical operator can use. Allen County and DeKalb County firms can ask any vendor whether the agent searches for tools or force-loads them, demand the measured accuracy with and without that feature, and confirm which tools the agent can reach and what stops a wrong tool call — no data scientist required. The token cost it cuts — the MCP tools tax, roughly 15,000 to 60,000 tokens per turn — is real money on every interaction, so the win is reliability and cost at once.
Sources & Further Reading
- MarkTechPost: marktechpost.com/2026/05/29/hermes-agent-ships-tool-search-for-mcp — Hermes Agent Ships Tool Search for MCP; Anthropic Evals Show 49% to 74% Accuracy Gain on Opus 4
- Model Context Protocol: modelcontextprotocol.io — Introduction to the Model Context Protocol (MCP)
- Anthropic: anthropic.com/engineering — Anthropic Engineering
- Nous Research: nousresearch.com — Nous Research
Ready to Pressure-Test Your AI Employee's Reliability?
Cloud Radix builds and governs AI employees for Northeast Indiana businesses — and reliability is the part we refuse to hand-wave. Our Secure AI Gateway is where tool search, role-scoped access, and supervision come together, so your agent reaches the right tool, only the tools it is allowed to touch, with a safety layer behind it. If your pilot stalled on wrong-tool errors, we will run the with-and-without eval most vendors skip and tell you honestly whether you need a patch or a rebuild.
Schedule a Free Consultation


