Google PageRank for AI agents. 25,000+ tools indexed.

Top 10 MCP Servers Every AI Developer Should Install in 2026

The AgentRank index tracks 25,000+ MCP servers. Most are niche, experimental, or unmaintained. These 10 are not. Selected by quality score and practical utility, this is the stack a working AI developer should have configured — browser automation, live web search, code intelligence, DevOps integration, document processing, and orchestration. One server per category, all actively maintained, all in the top 5% of the index.

The 10 servers

Scored by the AgentRank composite: freshness (25%), issue health (25%), inbound dependents (25%), stars (15%), contributors (10%). All servers here scored above 93/100. Average across the full index is 29.6 — these are genuine outliers.

Browser Automation 28,849 stars

If your agent needs to navigate the web, Microsoft's Playwright MCP is the standard. 97.1% issue close rate, 62 contributors, actively maintained by Microsoft. Browser automation, form filling, screenshots, and end-to-end testing — all exposed as MCP tools. This is the browser arm of any serious agent stack.

Install: npm install @microsoft/playwright-mcp
Web Search 2,016 stars

Every agent needs a live internet connection. Perplexity's official MCP server gives any MCP-connected agent access to real-time web search. An agent running on static training data misses everything that happened after its cutoff. This closes that gap. Official backing means it tracks the Perplexity API directly.

Install: npm install @perplexityai/mcp-server
#3 oraios/serena 93.61
Code Intelligence 21,474 stars

For developers building coding agents, Serena is the semantic layer between your agent and the codebase. It provides symbol navigation, definition lookup, and semantic code search via MCP — not raw file reads, but language-server-level context. 134 contributors makes this a community standard, not a side project.

DevOps 1,406 stars

Teams on Azure DevOps can wire their agent directly to work items, PRs, pipelines, and repositories. An agent that can create issues, check build status, and review PRs without leaving the conversation eliminates a class of context-switching entirely. 96.8% issue close rate — the most responsive server in the top 10.

Install: npm install @azure-devops/mcp-server
Content Processing 2,449 stars

Agents read Markdown. The web is HTML. markdownify-mcp converts anything — URLs, PDFs, Word documents, HTML — to clean Markdown. 100% issue close rate. Zero open issues. For any agent workflow that ingests web or document content, this is the preprocessing layer that reduces token cost and improves signal quality.

Install: npm install @zcaceres/markdownify-mcp
Orchestration 1,876 stars

Once your agent stack grows beyond two or three MCP servers, you need an orchestration layer. MCPHub manages multiple servers in a unified hub — load balancing, failover, endpoint isolation. 23 contributors and active development signal this is a real infrastructure project. Install before you need it.

Dev Workflow 3,999 stars

Spec-driven development for agents: give the agent a spec, it breaks tasks down, executes them, and reports progress via a VSCode extension dashboard. 97.7% issue close rate (130/133). This is the closest thing to a production agentic development loop in MCP form. Essential for developers building with AI coding agents.

#8 mcp-use/mcp-use 93.1
Frameworks 9,434 stars

If you're building multi-model workflows — Claude for reasoning, a smaller model for classification, different LLMs for different tasks — mcp-use is the framework that connects any LLM to any MCP server. 377 dependent repos confirm this is infrastructure other tools are building on top of.

Install: npm install mcp-use
#9 laravel/boost 96.94
Web Dev (PHP) 3,333 stars

For Laravel developers, Boost gives AI assistants context about your application: artisan commands, routes, models, and database schema. 1,032 dependent repos and 76 contributors. The Laravel community adopted this quickly once it landed — if you work in PHP, this is table stakes.

Game Dev 7,003 stars

The highest-scoring MCP server in the index. Direct AI control over Unity Editor — asset management, scene creation, script editing. 95.7% issue close rate across 369 issues. If you touch Unity at all, this fundamentally changes how fast you can work. The score reflects what the community thinks of it.

The starter stack (3 installs)

If you want to start immediately and not think about it: install these three.

Browser — Playwright MCP

Your agent's eyes. Automates any browser interaction: navigation, forms, screenshots, scraping.

npm install @microsoft/playwright-mcp

Search — Perplexity MCP

Live internet access. Your agent answers questions about events that happened after its training cutoff.

npm install @perplexityai/mcp-server

Documents — Markdownify MCP

Clean document ingestion. Converts URLs, PDFs, HTML to agent-readable Markdown. Zero open issues.

npm install @zcaceres/markdownify-mcp

Browser + search + document processing covers the majority of web-based agent tasks. Everything else on this list is additive on top of that foundation.

How to install MCP servers

MCP servers are configured in your client's config file. For Claude Desktop, edit claude_desktop_config.json. For Cursor, see Settings › MCP Servers. For Windsurf, see the MCP configuration panel.

General pattern for a Node.js server:

{
  "mcpServers": {
    "playwright": {
      "command": "npx",
      "args": ["-y", "@microsoft/playwright-mcp"]
    }
  }
}

Check each server's GitHub README for the exact configuration. Most TypeScript/Node.js servers follow the same pattern. Python servers use uvx or python -m instead of npx.

You can also use mcp-get for one-command installation into Claude Desktop:

npx @michaellatman/mcp-get@latest install @microsoft/playwright-mcp

A note on scores

The AgentRank scores above reflect the nightly crawl from March 2026. Scores change nightly as GitHub signals update — a server that ships a major update or closes a backlog of issues can move significantly within a week.

The five signals and their weights:

  • Freshness (25%) — days since last commit; decays past 90 days idle
  • Issue health (25%) — closed issues / total issues; measures maintainer responsiveness
  • Inbound dependents (25%) — repos that depend on this tool; real adoption signal
  • Stars (15%) — normalized popularity
  • Contributors (10%) — bus factor proxy

The score is not a measure of features. A server with 3 focused, perfectly-maintained tools can score higher than a server with 50 tools and a neglected issue queue. That's intentional. Full methodology here.

See the live rankings: agentrank-ai.com — 25,000+ tools, scores updated nightly.

Browse by category: Filter by dev category, language, or score range.

Maintain an MCP server? Claim your listing to add documentation and context to your entry.

Get the weekly AgentRank digest

Top movers, new tools, ecosystem insights — straight to your inbox.