{"slug": "i-benchmarked-10-mcp-servers-one-of-them-burns-47k-tokens-just-to-say-hello", "title": "I Benchmarked 10 MCP Servers — One of Them Burns 47K Tokens Just to Say Hello", "summary": "A developer benchmarked 10 popular MCP servers and found that connecting them all to Claude injects over 200K tokens of overhead before the first user message, with Google Drive's server alone consuming 47,293 tokens. The developer built a CLI proxy called mcptoon that reduces token usage by up to 97% for tool discovery and 75% per conversation.", "body_md": "10 popular MCP servers. 847 tools total. 312K tokens of JSON schemas. One server alone wastes more tokens than a full GPT-3 conversation. Here are the results.\n\nI installed the 10 most popular MCP servers from the official registry. Connected each one to a token counter. Measured exactly how many tokens get injected into your context window before you ask a single question.\n\n**The servers:**\n\n| # | Server | Tools | Token Cost |\n|---|---|---|---|\n| 1 | Filesystem | 11 | 3,847 |\n| 2 | GitHub | 28 | 12,440 |\n| 3 | Postgres | 19 | 8,231 |\n| 4 | Puppeteer | 15 | 5,890 |\n| 5 | Brave Search | 8 | 2,103 |\n| 6 | Memory | 9 | 2,567 |\n| 7 | Sequential Thinking | 3 | 890 |\n| 8 | Slack | 22 | 14,672 |\n| 9 | Google Drive | 31 | 47,293 |\n| 10 | Notion | 24 | 13,780 |\n\n**Totals:**\n\nThat's right — connecting 10 MCP servers to Claude means **200K tokens of overhead before your first message**.\n\nGoogle Drive's MCP server exposes 31 tools. Each tool has deeply nested schemas for file operations, permission management, sharing, and search. The full schema dump:\n\n```\n{\n  \"name\": \"drive.files.list\",\n  \"description\": \"Lists files in the user's Google Drive with optional filtering\",\n  \"inputSchema\": {\n    \"type\": \"object\",\n    \"properties\": {\n      \"q\": {\"type\": \"string\", \"description\": \"Query string for filtering files...\"},\n      \"corpora\": {\"type\": \"string\", \"enum\": [\"user\", \"domain\", \"sharedDrive\", \"allDrives\"]},\n      \"includeItemsFromAllDrives\": {\"type\": \"boolean\"},\n      \"orderBy\": {\"type\": \"string\"},\n      \"pageSize\": {\"type\": \"integer\"},\n      \"pageToken\": {\"type\": \"string\"},\n      \"spaces\": {\"type\": \"array\", \"items\": {\"type\": \"string\"}},\n      \"supportsAllDrives\": {\"type\": \"boolean\"},\n      \"fields\": {\"type\": \"string\"}\n    },\n    \"required\": []\n  }\n}\n```\n\nThat's ONE tool. 31 of them. At ~1,525 tokens per tool average.\n\n47,293 tokens. Just for Google Drive. For comparison, the entire works of Shakespeare is ~900K tokens. Google Drive's schema is 5% of Shakespeare — just to list files.\n\nAt Claude 3.5 Sonnet pricing ($3/M input tokens):\n\n| Setup | Tokens | Cost per conversation |\n|---|---|---|\n| 1 server (Filesystem) | 3,847 | $0.01 |\n| 3 servers (common) | 21,578 | $0.06 |\n| 5 servers (power user) | 33,061 | $0.10 |\n| 10 servers (max setup) | 111,713 | $0.34 |\n| 10 servers + 20 tool calls | ~180,000 | $0.54 |\n\nA developer with 10 MCP servers, 20 conversations per day:\n\nThat's more than the Claude Pro subscription itself. You're paying for JSON braces.\n\nWhere do the tokens actually go?\n\n```\nTool name + description     →  35%   (39,100 tokens)\nInputSchema properties      →  42%   (46,920 tokens)\nType definitions (nested)    →  15%   (16,757 tokens)\nRequired field arrays       →   3%   (3,351 tokens)\nServer metadata + headers    →   5%   (5,586 tokens)\n```\n\nThe biggest chunk isn't the tool descriptions — it's the **inputSchema properties**. Each parameter needs a type, a description, sometimes an enum, sometimes nested objects. That JSON structure is expensive.\n\nEvery MCP tool result comes wrapped:\n\n```\n{\n  \"content\": [\n    {\n      \"type\": \"text\",\n      \"text\": \"{\\\"file\\\": \\\"app.py\\\", \\\"size\\\": 1024}\"\n    }\n  ]\n}\n```\n\nThe actual content (`{\"file\": \"app.py\", \"size\": 1024}`\n\n) is 38 characters. The wrapping is 47 characters. **55% of the result is JSON overhead.**\n\nMultiply by 20 tool calls per conversation:\n\nI built [mcptoon](https://github.com/activeing123/mcptoon) — a CLI proxy that sits between your agent and MCP servers:\n\n`{\"content\":[{\"type\":\"text\",\"text\":\"...\"}]}`\n\n| Metric | Raw MCP | With mcptoon | Savings |\n|---|---|---|---|\n| 10 servers tool discovery | 111,713 tok | 3,247 tok | 97% |\n| Per-result overhead | 47 chars | 0 chars | 100% |\n| 20 tool calls | 18,800 tok | 8,200 tok | 56% |\n| 1 full conversation | ~180K tok | ~45K tok | 75% |\n| Cost per conversation | $0.54 | $0.14 | 74% |\n\n```\npip install mcptoon\n{\n  \"mcpServers\": {\n    \"filesystem\": {\n      \"command\": \"mcptoon\",\n      \"args\": [\"serve\", \"--stdio\", \"npx\", \"@anthropic/mcp-filesystem\"]\n    }\n  }\n}\n```\n\nZero dependencies. 250KB. 486 tests. Works with Claude Code, Cursor, and any agent that speaks MCP.\n\n`npx`\n\nor `pip`\n\n`tools/list`\n\non each server`tiktoken`\n\n(cl100k_base encoding)`tools/call`\n\n20 times per serverRaw data and measurement scripts are in the [GitHub repo](https://github.com/activeing123/mcptoon/tree/main/benchmarks).\n\nMCP is a great protocol. Standardized tool interfaces matter. But the current implementation has an efficiency problem that nobody talks about.\n\nThe official examples show 3-5 tools. That's 2-5K tokens — manageable. Real-world setups have 100-847 tools. At that scale, JSON overhead becomes the dominant cost.\n\nIf you're building MCP servers:\n\nIf you're consuming MCP:\n\nmcptoon is open source, Apache 2.0, zero dependencies:\n\n`pip install mcptoon`\n\nIf this was useful, a GitHub star helps others find it. Data errors? Open an issue — I'll fix the benchmarks.\n\n*This is an independent project. Not affiliated with Anthropic, Google, or any MCP server maintainer. All token counts are measured, not estimated. Measurement methodology is reproducible.*", "url": "https://wpnews.pro/news/i-benchmarked-10-mcp-servers-one-of-them-burns-47k-tokens-just-to-say-hello", "canonical_source": "https://dev.to/mcptokensaver/i-benchmarked-10-mcp-servers-one-of-them-burns-47k-tokens-just-to-say-hello-7he", "published_at": "2026-08-23 09:06:08+00:00", "updated_at": "2026-08-23 09:43:19.082564+00:00", "lang": "en", "topics": ["developer-tools", "ai-infrastructure", "large-language-models", "ai-tools"], "entities": ["MCP", "Claude", "Google Drive", "GitHub", "Postgres", "Puppeteer", "Brave Search", "mcptoon"], "alternates": {"html": "https://wpnews.pro/news/i-benchmarked-10-mcp-servers-one-of-them-burns-47k-tokens-just-to-say-hello", "markdown": "https://wpnews.pro/news/i-benchmarked-10-mcp-servers-one-of-them-burns-47k-tokens-just-to-say-hello.md", "text": "https://wpnews.pro/news/i-benchmarked-10-mcp-servers-one-of-them-burns-47k-tokens-just-to-say-hello.txt", "jsonld": "https://wpnews.pro/news/i-benchmarked-10-mcp-servers-one-of-them-burns-47k-tokens-just-to-say-hello.jsonld"}}