A production MCP pattern hides multi-agent orchestration behind a single thick tool
anilkr84 · reddit · 2026-07-26
Moving orchestration into the MCP server hides a multi-agent system behind one tool
The author describes a production pattern for MCP-based systems: instead of making the client LLM orchestrate a long chain of tools, move the reasoning and routing into the server and expose only one thick tool such as askagent(goal).
The three MCP generations
- Gen 1: thin stateless tools; the client handles all planning and state.
- Gen 2: tool plus skillpack; instructions improve usage, but orchestration still lives in the client.
- Gen 3: server-side orchestration; one call in, one answer out, with intermediate state kept on the server.
What this fixes
- Token cost stays flatter as tasks get deeper.
- Less goal drift, because the client only holds the question and answer.
- Smaller schema overhead.
- Routing can be handled by a domain-specific brain that adapts at runtime.
- The same tool can work across Claude, ChatGPT, or Codex.
Tradeoffs
- Higher latency per call.
- Less transparency and mid-chain steering.
- You are effectively running an agent system in production, so evals and observability become mandatory.
The author says their practical setup is a hybrid: one thick reasoning tool plus a few thin control tools for simple list/select operations.
Related event: Architecture Insight: Hiding Multi-Agent Orchestration in a Single MCP Tool(2 posts)→
More from coding & agent
- GPT-6 Astra beats Factorio with enemies in 44 in-game hours at ~$4,500 API cost — liminal_bardo · 2026-09-11
- Treating agents like 50 First Dates: a 3-layer context system so every conversation doesn't start from zero — evielync · 2026-09-11
- SmolVM open-sources persistent computer infrastructure for agents that outlive chat sessions — aniketmaurya · 2026-09-11
- ARRM targets silent economic regressions in AI agents that functional tests miss — Beautiful_Belt_601 · 2026-09-11
- Dev builds browser 3D pizza delivery game with Claude: physics, GPS pathfinding, traffic AI — vinishkapoor · 2026-09-11
- Build X Carousel Posts from One Wide Image: A Splitter Tool Plus YouMind Skill Workflow — sujingshen · 2026-09-11