Last Verified: September 2026 — commands and maintenance status checked against live GitHub sources
Most “top MCP servers” lists are just GitHub star counts copy-pasted into a listicle. That’s a bad filter. The most-starred Obsidian MCP server has 3,400 stars and hasn’t shipped a commit in over a year. Anthropic’s own reference Mem0 MCP server is archived — the README opens with a warning that it’s no longer maintained. Stars measure past hype, not whether a project still works.
We checked five servers instead of just ranking them: recent commit activity, how open issues get handled, and whether the practical claim (“free search,” “read-only by default”) actually holds up in the current version. These five passed.
Quick Start
Install all five with Claude Code’s CLI. Each is a separate claude mcp add call — run only the ones you actually need:
claude mcp add --transport stdio desktop-commander -- npx -y @wonderwhy-er/desktop-commander
claude mcp add --transport stdio n8n-mcp -- npx -y n8n-mcp
claude mcp add --transport stdio slack -- npx -y slack-mcp-server
claude mcp add --transport stdio duckduckgo -- uvx duckduckgo-mcp-server
claude mcp add --transport stdio mysql -- npx -y @benborla29/mcp-server-mysql
Restart Claude Code after adding — MCP connections load at session startup. Total time: about 5 minutes for all five, or under a minute each.
⚡ Copy This Prompt: Let Claude Code Pick and Verify the Right Ones For You
I want to install MCP servers from this list, but only the ones relevant to my actual workflow: Desktop Commander (terminal + filesystem control), n8n-mcp (build n8n workflows via natural language), Slack MCP (read/post to Slack), DuckDuckGo MCP (free web search, no API key), MySQL MCP (read-only database access).
1. Ask me which 1-3 of these match what I actually do day to day.
2. Run the "claude mcp add" command for only those.
3. After I restart, run one real action through each newly connected server (not just a connection check) and show me the output.
4. If any server fails to connect or the real-action test fails, tell me exactly what's wrong instead of saying it worked.
This matters because installing all five “just in case” is the exact mistake every 2026 MCP guide warns against — more servers means more standing access an agent can act through, and no one uses half of it.
What You’ll Need
| Requirement | Why You Need It | Time |
|---|---|---|
| Claude Code installed | All five connect via claude mcp add |
0 min |
Node.js or uv/uvx |
Each server ships as an npx or uvx package | ~2 min if missing |
| Per-server credentials (Slack token, MySQL connection string) | Only Slack and MySQL need them — the other three need none | varies |
The Five, One at a Time
1. Desktop Commander — terminal + filesystem control
github.com/wonderwhy-er/DesktopCommanderMCP
Gives Claude direct terminal control, file search, and diff-based file editing — the thing people actually reach for instead of chaining together separate read/write/bash tools.
claude mcp add --transport stdio desktop-commander -- npx -y @wonderwhy-er/desktop-commander
Why it made the cut: commit activity through September 2026, cross-platform (macOS/Windows/Linux), works with 15+ AI clients beyond Claude.
Watch out for: it’s terminal access — same blast-radius reasoning as giving Claude Code Bash. Don’t run it in a context you wouldn’t give shell access to.
2. n8n-mcp — build n8n workflows in natural language
github.com/czlonkowski/n8n-mcp
If you followed our n8n setup guide, this is the complementary piece: instead of clicking nodes together manually, you describe the workflow and Claude builds it in n8n directly.
claude mcp add --transport stdio n8n-mcp -- npx -y n8n-mcp
Why it made the cut: largest install base on this list by a wide margin, and the maintainer has published multiple security advisories (GHSA) in 2026 — a sign of active review, not neglect.
Watch out for: solo-maintained project; the author has been open that maintaining it competes with paid work, so response times on issues can be slow.
3. Slack MCP Server — the community server that replaced the official one
github.com/korotovsky/slack-mcp-server
Anthropic’s own reference Slack server was retired to an archive repo in 2026. If you want Slack in your agent today, this is the de facto replacement, not an official one.
claude mcp add --transport stdio slack -- npx -y slack-mcp-server
Why it made the cut: it’s the specific project the official docs now point to, with active 2026 development.
Watch out for: you’re trusting a community maintainer with a Slack token — scope that token’s permissions down before connecting.
4. DuckDuckGo MCP Server — free web search, no API key
github.com/nickclyde/duckduckgo-mcp-server
Every other search MCP wants a paid API key (Brave, Google, Bing). This one doesn’t — it’s DuckDuckGo search plus page-content fetching, free.
claude mcp add --transport stdio duckduckgo -- uvx duckduckgo-mcp-server
Why it made the cut: concrete proof of active maintenance — DuckDuckGo started fingerprint-blocking the default HTTP client in mid-2026, and the maintainer shipped a fallback within the same release cycle. That’s the difference between “still maintained” and “still has a green checkmark on npm.”
Watch out for: free tier of a scraped search engine — expect occasional rate-limiting under heavy use, not an SLA.
5. MySQL MCP Server — read-only by default
github.com/benborla/mcp-server-mysql
Lets Claude inspect schemas and run queries against a real MySQL database. The reason it’s on this list instead of a dozen equivalents: writes are opt-in via an explicit env flag, not the default.
claude mcp add --transport stdio mysql -- npx -y @benborla29/mcp-server-mysql
Why it made the cut: the safe-by-default design is the right call for a database an agent can reach — you have to deliberately turn on write access.
Watch out for: last major commit was March 2026 — still maintained, but slower-moving than the others on this list. Fine for read-only schema inspection; verify current behavior before enabling writes in production.
Verify Each One Actually Works
Connection status isn’t proof. Run one real action through each:
ls in project root, got real output✔ n8n-mcp listed existing workflows from a live n8n instance
✔ slack posted a test message to a private test channel
✔ duckduckgo searched a query, got real result URLs back
✔ mysql ran
SHOW TABLES against a real (non-production) schema
If a server shows “connected” in claude mcp list but fails on a real action, the connection succeeded and the tool call is what’s broken — usually a missing credential or a stale cached version.
Common Mistakes to Avoid
- Installing all five because the list exists. Every 2026 MCP guide converges on the same warning: more connected servers means more standing access, most of it idle. Install what matches your actual workflow.
- Trusting star count alone. The most-starred Obsidian MCP server hasn’t been touched in over a year. Check the commit date, not just the badge.
- Assuming “official” beats “community.” Slack’s official server is gone; the community one is now the standard. Vendor-backed isn’t always current.
- Skipping the credential scoping step. Slack and MySQL both need real credentials — scope them to the minimum before connecting, not after.
Q&A
Why isn’t Playwright, GitHub, or Context7 MCP on this list?
They already have their own dedicated setup guides — see Playwright MCP, GitHub MCP, and Context7 MCP.
What got excluded and why?
The most-starred Obsidian MCP server (3.4k stars, no commits in a year) and Anthropic’s Mem0 MCP server (archived) both looked like obvious picks by star count and both failed the maintenance check.
Is a solo-maintained project (n8n-mcp, Slack MCP) too risky to depend on?
It’s a real tradeoff, not a dealbreaker — check for recent commits and how issues get triaged before depending on any single-maintainer tool, the same way you’d vet any dependency.
Official Resources
- Desktop Commander MCP on GitHub
- n8n-mcp on GitHub
- Slack MCP Server on GitHub
- DuckDuckGo MCP Server on GitHub
- MySQL MCP Server on GitHub
If this saved you from installing five abandoned repos, follow us on X for more verified setup guides and prompt tips.
Leave a Reply