Originally published in Spanish on El Rack, a Spanish tech review site I write for. Browser translation handles the rest of the site well if you want to dig deeper into the sysadmin/homelab content.
Claude Code is my main tool every day for managing a handful of self-hosted projects. So when "just install these 10 MCP servers" guides kept showing up in every forum thread, I wanted to actually separate what's worth the setup time from what's just noise sitting in your context window.
Here's what I found after digging into the current state of the ecosystem.
The cost nobody mentions before you install ten of these
Before the list: the one number that matters most. Every connected MCP server injects somewhere between 2,000 and 5,000 tokens of tool schemas at session start. Three servers connected at once is already 6,000 to 15,000 tokens spent before you type your first prompt.
That's not free, even though it feels like it. If Claude Code feels slower to start or seems to "forget" context earlier than you'd expect, check how many MCP servers you're leaving connected by default.
MCP is convenient. It is not free. Every server you connect is tokens that are no longer available for your own code.
The three actually worth installing first
Independent guides keep converging on the same top three, and after using them daily, I agree with the consensus:
Context7 — live library documentation, so Claude doesn't hallucinate APIs that changed three versions ago. This is the one that's saved me the most from confidently-wrong code suggestions based on outdated library docs.
Official GitHub MCP — repo operations, pull requests, issues and CI, without leaving the chat. One caveat on the token cost above: for simple lookups, the gh CLI is still much cheaper than going through MCP.
Playwright MCP — lets Claude drive a real browser to confirm a frontend change actually renders correctly, instead of just trusting the code diff. If you do any frontend work, this is the difference between "the code compiles" and "the code actually works."
Two that Anthropic still maintains but aren't essential anymore
The original reference servers for structured reasoning and file operations are still around, but the general consensus is honest about it: native model reasoning improved enough through 2026 that most people skip the reasoning server entirely, and Claude Code already ships built-in file tools that make the equivalent MCP mostly redundant.
The governance shift that matters long-term
In December 2025, MCP governance moved from Anthropic alone to the Agentic AI Foundation under the Linux Foundation, with Anthropic, OpenAI, Google, Microsoft, AWS, Cloudflare and Bloomberg on the board. In practice, this means vendor-maintained servers (Slack's own MCP, GitHub's own MCP) tend to be more reliable than generic third-party integrations — each company simply knows its own service better than any middleman.
Best MCP for a specific task
If you don't want to read the full ranking, here's the direct answer for whatever you're trying to solve:
Working with your database → The PostgreSQL MCP if you run Postgres on any provider, or the official Supabase MCP if your backend lives there specifically (you can scope it to a single project via a URL parameter — good security practice).
Repo management → The official GitHub MCP, already covered above.
Verifying frontend actually works → Playwright, also covered above.
Project docs and knowledge base → The Notion MCP, if your team documents there — keeps pages synced with code changes automatically.
Task management → The Linear MCP, the most widely adopted for this.
Production error monitoring → The Sentry MCP — brings real production error context straight into the chat instead of copy-pasting logs by hand.
Design → The Figma MCP — pulls measurements, components and assets directly from published designs.
Notifying a team → The Slack MCP — post deployment updates or task results without leaving the session.
The question isn't "which MCP servers exist" — it's "which task do I repeat constantly that could be solved without switching windows." That question gets you a better answer than any generic ranking.
When to use MCP and when not to
The rule that sums it up best: use a CLI when latency and tokens matter and you can make a direct shell call; use an MCP server when you want the same tool available across Claude Code, Cursor and other clients with one config; use a Skill when the workflow is a set of instructions, not an external tool to call.
Full article (in Spanish) with more detail:
Top comments (0)