The 15 MCP Servers That Actually Matter (And Why)
Out of 10,000+ MCP servers, these 15 are the ones worth installing. Opinionated, tested, ranked by real-world utility.
Published 2026-03-15
There are over 10,000 MCP servers listed across various directories. Most are experiments, proofs of concept, or abandoned weekend projects. Sorting signal from noise is the hardest part of adopting MCP.
We tested dozens of servers across setup time, reliability, documentation quality, and real-world utility. Here are the 15 that actually matter, ranked by how much value they add to a typical Claude workflow.
Tier 1: Install These First
1. GitHub MCP Server (github/github-mcp-server)
Stars: 27.9k | Author: GitHub (official) | Setup: 5 minutesThis replaced Anthropic's original reference implementation and it shows. GitHub built this with full API coverage: repos, PRs, issues, code search, CI/CD status, and actions. If you write code and use GitHub, this is your first install.
Why it matters: Code review, issue triage, and PR creation from Claude Code become seamless. You stop context-switching to the browser for GitHub operations. Install:docker run ghcr.io/github/github-mcp-server or Go binary download.
2. Filesystem MCP Server (official reference)
Stars: 81k (mono-repo) | Author: Anthropic | Setup: 2 minutesThe most basic MCP server -- read and write local files. But "basic" here means "essential." Every file-based workflow starts with filesystem access.
Why it matters: It is the foundation. Claude Code has its own file access, but the MCP server adds structured, permission-controlled access that works across any MCP client. Install:npx -y @modelcontextprotocol/server-filesystem /path/to/dir
3. Context7 (upstash/context7)
Stars: 49k | Author: Upstash | Setup: 2 minutesThe most popular community MCP server, and the popularity is earned. Context7 injects real, version-specific library documentation into Claude's context. Instead of Claude hallucinating API calls from training data, it pulls from actual docs.
Why it matters: Dramatically reduces hallucinated API calls. If you work with any library that has changed since Claude's training cutoff, this is transformative. Install:npx -y @upstash/context7-mcp
4. Playwright MCP Server (microsoft/playwright-mcp)
Stars: 28.9k | Author: Microsoft | Setup: 3 minutesMicrosoft's official browser automation server uses Playwright's accessibility tree snapshots instead of screenshots. This makes it faster and more deterministic than visual approaches.
Why it matters: Web testing, scraping, and interaction become reliable. The accessibility tree approach means Claude works with structured data, not pixels. Install:npx @anthropic-ai/playwright-mcp
Tier 2: Install Based on Your Stack
5. Memory MCP Server (official reference)
Stars: 81k (mono-repo) | Author: Anthropic | Setup: 2 minutesPersistent knowledge graph memory across sessions. Claude stores entities, relationships, and observations in a local JSON file. It remembers your project decisions, preferences, and past outcomes.
Why it matters: Long-running projects benefit enormously from Claude remembering context. Without this, every session starts from zero. Install:npx -y @modelcontextprotocol/server-memory
6. PostgreSQL MCP Server (archived reference)
Stars: 81k (mono-repo) | Author: Anthropic (archived) | Setup: 5 minutesRead-only database access with schema inspection. Claude can explore your database structure, run queries, and help with data analysis. Read-only by default is the right security posture.
Why it matters: Database exploration and query building become conversational. Claude understands your schema and writes correct queries. Install:npx -y @modelcontextprotocol/server-postgres postgresql://localhost/mydb
Note: Archived status means no security updates. For production databases, consider Neon or Supabase MCP instead.
7. Notion MCP Server (makenotion/notion-mcp-server)
Stars: 4k | Author: Notion (official) | Setup: 5 minutesOfficial Notion integration for reading pages, querying databases, and searching across your workspace. Maintained by Notion's own team.
Why it matters: If your team's documentation lives in Notion, this gives Claude access to your institutional knowledge. Meeting notes, specs, and decisions become searchable context. Install:npx -y @notionhq/notion-mcp-server
8. Figma Context MCP (GLips/Figma-Context-MCP)
Stars: 13.7k | Author: Community (Figma-endorsed) | Setup: 5 minutesExtracts design specifications from Figma files: layout, colors, typography, and component structure. The bridge between design and implementation.
Why it matters: Frontend developers can point Claude at a Figma file and get accurate implementations. Reduces the design-to-code gap significantly. Install:npx figma-developer-mcp --figma-api-key=YOUR_KEY
Tier 3: Specialized but Excellent
9. Sequential Thinking (official reference)
Structured reasoning for complex problems. Forces Claude to break problems into explicit steps. Most useful for architecture decisions, debugging complex issues, and research synthesis.
Install:npx -y @modelcontextprotocol/server-sequential-thinking
10. Brave Search MCP Server
Privacy-focused web search from Claude. Solid default for giving Claude internet access without sending everything to Google. Free tier is limited but sufficient for development use.
Install:npx -y @anthropic/brave-search-mcp
11. Docker MCP Server (docker/docker-mcp)
Official Docker container management. List, start, stop, inspect containers, and manage compose stacks. Essential if your development workflow is container-based.
Install:docker run ghcr.io/docker/docker-mcp
12. Firecrawl MCP (mendableai/firecrawl-mcp-server)
Web scraping that returns LLM-optimized content. Crawls sites and converts them to clean, structured text. Better than raw fetch for scraping use cases.
Install:npx -y firecrawl-mcp
13. Cloudflare MCP Server (cloudflare/mcp-server-cloudflare)
Manage Workers, KV, R2, D1, and DNS from Claude. If you deploy to Cloudflare, this eliminates dashboard context-switching.
Install:npx @cloudflare/mcp-server-cloudflare
14. Blender MCP (ahujasid/blender-mcp)
Control Blender via natural language. Create 3D scenes, modify objects, apply materials. The most impressive creative MCP server by far.
Install:uvx blender-mcp
15. Obsidian MCP (calclavia/mcp-obsidian)
Read, search, and manage Obsidian vault notes. Great for knowledge workers who want Claude to access their personal knowledge base.
Install:npx -y mcp-obsidian
What We Left Out (And Why)
AWS MCP Servers: Excellent but complex. Multiple separate servers to install and configure. Worth it for heavy AWS users, but the setup cost is high. Browser Tools MCP: Good but Playwright covers most use cases better. Install Browser Tools if you specifically need DevTools data (console logs, network requests). Exa Search: Better search quality than Brave for research, but requires a paid API key. Brave is the better default. MongoDB/MySQL MCP: Solid database servers but more niche than PostgreSQL. Install if you use those databases.The Recommended Stack
For most developers, install these five and you cover 90% of use cases:
1. GitHub -- code management
2. Filesystem -- file access
3. Context7 -- documentation
4. Memory -- session persistence
5. Playwright -- browser automation
Add database, search, and specialized servers as your workflow demands. Start small, add deliberately.