💡
Reference: MCP is dead. Long live the CLI
After reading the above article, we ran the experiments on our actual stack. This document covers the original argument, additional research, and our measurements.
📌
Update: Since these measurements were taken, Claude Code has rolled out Tool Search with Deferred Loading, which loads MCP tool schemas on-demand and reduces context usage by 85%+. The context bloat described in Problem 1 is largely addressed for users on current Claude Code versions. The performance, debugging, and architectural arguments below still apply.
MCP (Model Context Protocol) connects LLMs to external tools (GitHub, Linear, Notion, Slack, etc.).
Since its launch in late 2024, it's been called "the USB-C of the AI ecosystem." But developers actually using it day-to-day are starting to think differently.
TL;DR: MCP eats context, has low reliability, and overlaps with existing CLI/API.
The context window is the LLM's desk. When you connect MCP servers, tool definitions alone take up a significant chunk of that desk.
Restaurant analogy:
We extracted and measured the actual tool definitions from the MCP servers connected in our environment. With all 4 servers connected, 10.5% of the context window is consumed by tool definitions alone.
| MCP Server | Tools | Estimated Chars | Estimated Tokens |
|---|---|---|---|
| Linear | 42 | ~51,229 | ~12,807 |
| Notion | 14 | ~16,156 | ~4,039 |
| Slack | 12 | ~15,168 | ~3,792 |
| Postgres | 9 | ~1,755 | ~438 |
| Total | 77 | ~84,308 | ~21,077 |
| Model | Context Window | Usage by Tool Definitions |
|---|---|---|
| Claude (200K) | 200,000 tokens | 10.5% |
| GPT-4o (128K) | 128,000 tokens | 16.5% |
Linear alone accounts for over 12,800 tokens. That's 42 tool definitions always loaded, even if you only ever use get_issue and save_issue.
| Issue | Detail |
|---|---|
| Init failure, repeated re-auth | Requires starting and maintaining a separate process |
| Slower AI responses | External server round-trip on every tool call |
| Mid-session tool death | MCP server process crashes |
| Opaque permissions | Unclear what permissions each tool actually has |
Performance is a known issue. The author of the original article benchmarked Jira MCP against its REST API directly and found MCP was 3x slower per call, and 9.4x slower on first call including initialization. This isn't Jira-specific, it's architectural: every MCP server adds a process layer between the LLM and the underlying API. The same overhead applies to the Linear, Notion, and Slack servers in our stack.
| Aspect | CLI / API | MCP |
|---|---|---|
| Human-machine parity | Same commands for humans and LLMs | Only exists inside LLM conversations |
| Composability | Pipes, jq, grep freely combinable | Locked to server return format |
| Debugging | Reproduce immediately in terminal | Only reproducible inside conversation context |
| Training data | Already learned from man pages, StackOverflow | Requires separate tool definitions |
| Install cost | Mostly already installed | Server setup, auth, process management needed |
How many tokens does it cost to look up the same Linear issue?
MCP consumes ~65x more tokens than the CLI approach.
[ CLI approach: ~200 tokens ]
curl -s -H "Authorization: Bearer $LINEAR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"query":"{ issue(id: \"ISSUE-ID\") { title state { name } assignee { name } } }"}' \
https://api.linear.app/graphql
-> Prompt (curl command): ~50 tokens
-> Response: ~150 tokens
[ MCP approach: ~12,957 tokens ]
-> Tool definitions (always loaded): ~12,807 tokens (42 tools)
-> Tool call + response: ~150 tokens
Provide CLI -> API -> docs, in that order. LLMs already learned from man pages and StackOverflow.
Using existing CLI directly:
If MCP is "spreading all menus on the table upfront", Skills is "asking the librarian for only the book you need".
| Aspect | MCP | Skills |
|---|---|---|
| Loading time | All tool definitions loaded on connect | Only loaded when needed |
| Context consumption | Always occupied | Only when in use |
| Scalability | Context pressure grows with each server | Not proportional to skill count |
# Linear Issue Lookup Skill
- Linear API: https://api.linear.app/graphql
- Auth: Bearer Token ($LINEAR_TOKEN env var)
- Get issue: curl -s -H "Authorization: Bearer $LINEAR_TOKEN" -H "Content-Type: application/json" -d '{"query":"{ issue(id: \"ISSUE-ID\") { title state { name } assignee { name } } }"}' https://api.linear.app/graphql
- Search issues (GraphQL): adjust the query field for JQL-like filtering
- Results are JSON, parse with jq
Short answer: it depends.
# Postgres Skill
- Host: postgres://localhost:5432/myapp
- Tables: users (id, name, email), orders (id, user_id, status)
- CLI: psql -h localhost -d myapp -c "SELECT * FROM users WHERE ..."
However, MCP has advantages for databases:
DROP TABLE.| Scenario | Recommendation | Why |
|---|---|---|
| Local dev / personal DB | Skills + CLI | Light and fast. Easy to recover from mistakes. |
| Production DB / shared team | MCP | Safety guardrails are essential. Query validation and access control at the server level. |
These days, every SaaS landing page has "MCP supported" in the feature list. Whether the MCP server is stable or how much context it eats doesn't matter - the goal is checking the "we do MCP too" box. Same pattern as "AI-powered" and "blockchain-based" marketing from years past. When users actually connect, they get dozens of tool definitions loaded, initialization failures, and mid-session crashes.
At Quandri we use all three approaches side by side, picking what fits each service:
gh, psql, aws). Zero context cost, full flexibility, debugs straight in the terminal.We don't force one path. If a CLI already exists and authenticates locally, that's usually the lightest option. If a service has no CLI or we need uniform auth across the team, MCP earns its keep.
Teaching well matters more than connecting everything.
For us, replacing MCP servers with Skills that wrap existing CLIs freed up ~21K tokens of context, removed init failures from our daily workflow, and kept debugging in the terminal where it belongs.
Load only the tools you need, only when you need them, with CLI instructions baked in. MCP might evolve to solve these problems, but right now, Skills win.
: