| ▲ | jswny 15 hours ago | |||||||||||||||||||||||||||||||||||||||||||
MCP loads all tools immediately. CLI does not because it’s not auto exposed to the agent, got have more control of how the context of which tools exist, and how to deliver that context. | ||||||||||||||||||||||||||||||||||||||||||||
| ▲ | algis-hn 6 hours ago | parent | next [-] | |||||||||||||||||||||||||||||||||||||||||||
Accurate for naive MCP client implementations, but a proxy layer with inference-time routing solves exactly this control problem. BM25 semantic matching on each incoming query exposes only 3-5 relevant tool schemas to the agent rather than loading everything upfront - the 44K token cold-start cost that the article cites mostly disappears because the routing layer is doing selection work. MCPProxy (https://github.com/smart-mcp-proxy/mcpproxy-go) implements this pattern: structured schemas stay for validation and security quarantine, but the agent only sees what's relevant per query rather than the full catalog. The tradeoff isn't MCP vs CLI - it's routing-aware MCP vs naive MCP, and the former competes with CLI on token efficiency while retaining the organizational benefits the article argues for. | ||||||||||||||||||||||||||||||||||||||||||||
| ▲ | jabber86 4 hours ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||||||||||||||
It does not have to load all tools. As you are able to hide the details in CLI you can implement the same in MCP server and client. Just follow the widely accepted pattern (all you need 3 tools in front): - listTools - List/search tools - getToolDetails - Get input arguments for the given tool name - execTool - Execute given tool name with input arguments HasMCP - Remote MCP framework follows/allows this pattern. | ||||||||||||||||||||||||||||||||||||||||||||
| ▲ | CharlieDigital 15 hours ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||||||||||||||
You can solve the same problem by giving subsets of MCP tools to subagents so each subagent is responsible for only a subset of tools. Or...just don't slam 100 tools into your agent in the first place. | ||||||||||||||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||||||||||||
| ▲ | SilverElfin 6 hours ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||||||||||||||
I’m not a technical person but I’ve seen people share various tips and tricks to get around the MCP context issues. There’s also this from Anthropic: https://www.anthropic.com/engineering/code-execution-with-mc | ||||||||||||||||||||||||||||||||||||||||||||
| ▲ | estetlinus 3 hours ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||||||||||||||
”to know what tools you have access to read the dockerfile”? | ||||||||||||||||||||||||||||||||||||||||||||
| ▲ | climike 15 hours ago | parent | prev [-] | |||||||||||||||||||||||||||||||||||||||||||
See also https://cliwatch.com/blog/designing-a-cli-skills-protocol | ||||||||||||||||||||||||||||||||||||||||||||