Remote OpenClaw Blog
Best MCP Servers in 2026: The Complete Ranked List
9 min read ·
Context7 by Upstash is the best MCP server in 2026: with 58,520 GitHub stars as of July 2026, it is the most-starred dedicated MCP server in the Remote OpenClaw directory of 13,870 servers, and it fixes the single biggest cause of AI coding errors by injecting current library documentation into your agent's context. Below it sit 13 more picks, one per major use case, ranked by GitHub stars, maintenance activity, and capability breadth rather than by claimed testing we did not do.
How We Ranked the Best MCP Servers
This list ranks MCP servers by three verifiable signals: GitHub stars, maintenance activity (last push date), and capability breadth, all checked against each repository on July 3, 2026. We picked one winner per major use case instead of stacking ten browser tools at the top, so the list doubles as a starter kit: install the rows that match your stack and you have a complete agent toolbox.
One honesty note on stars. For projects like MarkItDown and Cognee, the star count belongs to the whole project, not only its MCP server. We flag those inline rather than pretending a converter library's 162,627 stars all voted for its MCP endpoint.
The 14 Best MCP Servers in 2026
These 14 servers cover documentation, browsers, code hosting, coding agents, files, conversion, memory, cloud, notes, observability, databases, search, chat, and payments. Install commands were verified against each repo's README in July 2026.
1. Context7 - live documentation for any library
Context7 (58,520 stars) pulls version-specific, up-to-date documentation and code examples into your prompt, which kills the "trained on an old API" class of hallucination. It works without an API key at lower rate limits; a free key from context7.com raises them. Full setup notes are in our Context7 MCP guide and on its directory page.
claude mcp add context7 -- npx -y @upstash/context7-mcp
2. Playwright MCP - browser automation
Microsoft's Playwright MCP (34,656 stars) drives Chrome, Firefox, and WebKit through the accessibility tree instead of screenshots, so agents click real elements deterministically. It needs no API key. See its directory page and our full browser automation MCP ranking.
claude mcp add playwright npx @playwright/mcp@latest
3. GitHub MCP Server - repos, issues, and PRs
The official GitHub MCP Server (31,149 stars) lets agents read code, triage issues, manage pull requests, and inspect Actions runs. The hosted remote endpoint at https://api.githubcopilot.com/mcp/ uses OAuth, or run it locally in Docker with a personal access token. Directory page: github/github-mcp-server.
claude mcp add --transport http github https://api.githubcopilot.com/mcp/
4. Serena - semantic coding toolkit
Serena (26,052 stars) gives agents IDE-grade symbol search and precise code edits via language servers, which beats grep-style exploration on large codebases. It is free, local, and needs no API key. Directory page: oraios/serena.
uv tool install -p 3.13 serena-agent
serena init
5. Filesystem - the reference server standard
Anthropic's Filesystem reference server gives agents scoped read and write access to directories you allow. Its monorepo holds 88,018 stars as of July 2026 and six sibling servers (Git, Fetch, Memory, Sequential Thinking, Time), all keyless. Directory page: server-filesystem.
npx -y @modelcontextprotocol/server-filesystem /path/to/allowed/files
6. MarkItDown MCP - file conversion
Microsoft's MarkItDown (162,627 stars, counted for the whole project) converts PDF, Word, Excel, PowerPoint, images, and audio into Markdown that agents can actually read. The markitdown-mcp package wraps it as a local server with no key required. Directory page: microsoft/markitdown.
pip install markitdown-mcp
markitdown-mcp
7. Cognee - agent memory
Cognee (26,745 stars, project-wide) builds a knowledge graph plus vector memory from your documents and chat history in about five lines of code. Its MCP server lives in the repo's cognee-mcp directory: clone the repo, then run uv sync --dev --all-extras inside that folder to install it. Directory page: topoteretes/cognee. A lighter keyless alternative is Basic Memory.
8. AWS MCP Servers - cloud infrastructure
The awslabs/mcp monorepo (9,377 stars) ships dozens of AWS-specific servers covering documentation, CDK, cost analysis, and core services, each published to PyPI. Directory page: awslabs/mcp. More options in our cloud infrastructure MCP roundup.
uvx awslabs.core-mcp-server@latest
9. Notion MCP - workspace and notes
The official Notion MCP Server (4,473 stars) reads and writes pages, databases, and comments. Use the hosted endpoint at https://mcp.notion.com/mcp with OAuth, or run it locally with an integration token. Directory page: makenotion/notion-mcp-server.
npx @notionhq/notion-mcp-server
10. Grafana MCP - observability
Grafana MCP (3,210 stars) queries dashboards, datasources, Prometheus, Loki, and incidents from chat. Point it at your instance with GRAFANA_URL plus a service account token. Directory page: grafana/mcp-grafana; siblings in our observability MCP roundup.
docker run -i --rm -e GRAFANA_URL -e GRAFANA_SERVICE_ACCOUNT_TOKEN grafana/mcp-grafana
11. Postgres MCP Pro - databases
Postgres MCP Pro (3,001 stars) goes beyond schema browsing with index tuning, explain plans, and health checks, plus a restricted mode for safer production access. Directory page: crystaldba/postgres-mcp; more engines in our database MCP roundup.
pip install postgres-mcp
12. Tavily MCP - web search
Tavily MCP (2,172 stars) provides agent-optimized web search, extraction, and crawling. It requires a TAVILY_API_KEY, and Tavily offers a free tier. Directory page: tavily-ai/tavily-mcp.
claude mcp add tavily -- npx -y tavily-mcp
13. Slack MCP Server - team chat
The community Slack MCP Server (1,702 stars) reads channels, threads, and DMs using OAuth or browser session tokens, with message search that official bot tokens cannot match. Directory page: korotovsky/slack-mcp-server; alternatives in our communication MCP roundup.
npx -y slack-mcp-server@latest --transport stdio
14. Stripe MCP - payments
Stripe's official MCP server, part of the stripe/ai toolkit (1,644 stars), manages customers, products, payment links, and documentation search. Stripe hosts a remote server at https://mcp.stripe.com with OAuth. Directory page: stripe/agent-toolkit.
npx -y @stripe/mcp --tools=all --api-key=YOUR_STRIPE_SECRET_KEY
Comparison Table: Best MCP Servers at a Glance
The table below compares all 14 picks on stars, key requirements, and hosting model, with star counts current as of July 3, 2026.
| Rank | Server | Best for | Stars (Jul 2026) | API key | Runs |
|---|---|---|---|---|---|
| 1 | Context7 | Library docs | 58,520 | Optional | Remote or local |
| 2 | Playwright MCP | Browser automation | 34,656 | No | Local |
| 3 | GitHub MCP Server | Repos and PRs | 31,149 | OAuth or PAT | Remote or Docker |
| 4 | Serena | Semantic code edits | 26,052 | No | Local |
| 5 | Filesystem | Local files | 88,018 (monorepo) | No | Local |
| 6 | MarkItDown MCP | File conversion | 162,627 (project) | No | Local |
| 7 | Cognee | Agent memory | 26,745 (project) | LLM key for embeddings | Local |
| 8 | AWS MCP Servers | Cloud | 9,377 | AWS credentials | Local |
| 9 | Notion MCP | Notes and docs | 4,473 | OAuth or token | Remote or local |
| 10 | Grafana MCP | Observability | 3,210 | Service account | Local or Docker |
| 11 | Postgres MCP Pro | Databases | 3,001 | Connection string | Local or Docker |
| 12 | Tavily MCP | Web search | 2,172 | Yes (free tier) | Remote or local |
| 13 | Slack MCP Server | Team chat | 1,702 | Slack tokens | Local or Docker |
| 14 | Stripe MCP | Payments | 1,644 | OAuth or secret key | Remote or local |
Awesome MCP Servers: The Best Lists of Lists
"Awesome MCP servers" refers to curated GitHub lists of Model Context Protocol servers, and the largest is punkpeye/awesome-mcp-servers at roughly 90,000 stars as of July 2026. wong2/awesome-mcp-servers (about 4,200 stars) is a smaller hand-picked alternative, and modelcontextprotocol/servers is the official reference plus community index.
Awesome lists are great for discovery but flat: no star sorting, no category filters, no install metadata. That is the gap our MCP directory covers with structured data for 13,870 servers, including the API-key and transport details used in this post.
Browse MCP Servers by Category
The Remote OpenClaw directory groups all 13,870 MCP servers into 14 categories, each with its own hub page. Start with the category that matches your workflow:
- Search (2,091 servers) and AI & ML (2,284)
- Developer Tools (1,127) and Vector & Memory (1,121)
- Cloud & DevOps (721), Files & Docs (719), and Databases (704)
- Finance & Payments (701) and Browser & Scraping (485)
- Communication (418), Productivity (355), Observability (341), and Maps & Location (160)
For deeper rankings we also keep dedicated posts on browser automation servers, free no-key servers, and file and document management servers.
Limitations and Tradeoffs
More MCP servers means a bigger attack surface and a heavier context window, so do not install all 14 of these at once. Every server's tool definitions consume tokens on each request, and community servers run with your local permissions, so review the source or pin versions before wiring one into production. Our guide on securing MCP server connections covers token scoping and read-only modes.
Stars are also a popularity signal, not a quality guarantee. A 500-star server updated last week is often a better bet than a 5,000-star server abandoned a year ago, which is why the comparison table pairs stars with maintenance status, and why for library-backed projects we say so explicitly.
Related Guides
- Claude Code MCP: How to Add and Manage MCP Servers
- Best Free MCP Servers in 2026: No API Key Needed
- Best Browser Automation MCP Servers in 2026
- OpenClaw MCP Servers Explained
Go deeper
The operator playbooks
Production-ready PDF guides for OpenClaw and Hermes Agent — $19.99 each.
Skills for this topic
Browse all skills →Frequently Asked Questions
What is the best MCP server in 2026?
Context7 by Upstash is the best overall MCP server in 2026, with 58,520 GitHub stars as of July 2026, active weekly maintenance, and a free tier that works without an API key. The best server for your stack depends on the use case: Playwright MCP leads browser automation and the GitHub MCP Server leads repository workflows.
What are MCP servers?
MCP servers are programs that expose tools, data, and prompts to AI agents through the Model Context Protocol, an open standard Anthropic released in November 2024. An agent like Claude Code connects to a server and gains its capabilities, such as browsing the web, querying a database, or reading Slack. See our MCP servers vs API integrations comparison for when
Are MCP servers free?
Most MCP servers are free open-source software, but many connect to paid services that require an API key. Six of the 14 servers in this list run with no key at all, and our best free MCP servers guide separates genuinely keyless servers from free-tier ones.
What is the awesome MCP servers list?
Awesome MCP servers is a curated GitHub list format for discovering Model Context Protocol servers; the largest, punkpeye/awesome-mcp-servers, holds roughly 90,000 stars as of July 2026. Awesome lists lack filters and install metadata, which is what searchable directories like our MCP directory add on top.
How do I install an MCP server in Claude Code?
Run claude mcp add <name> -- <command> for local servers, for example claude mcp add context7 -- npx -y @upstash/context7-mcp , or claude mcp add --transport http <name> <url> for remote ones. Our Claude Code MCP guide walks through scopes, env vars, and troubleshooting.





