12 Best MCP Servers for Claude Desktop in 2026

March 2026 12 min read Updated regularly

The Model Context Protocol (MCP) lets Claude Desktop, Cursor, and other AI tools connect to external data sources and services. Instead of copy-pasting data into your chat, MCP servers give Claude direct access to browsers, databases, APIs, files, and more.

With thousands of MCP servers now available, finding the right ones can be overwhelming. This guide covers the 12 most useful MCP servers across different categories, with installation instructions and real examples.

Contents

  1. How to Install MCP Servers
  2. Browser Automation — Playwright, Browserbase
  3. Web Search — Brave Search, Exa
  4. Data & Databases — DbHub, Filesystem
  5. Cloud Infrastructure — AWS, Cloudflare
  6. Productivity — Notion, Memory
  7. DeFi & Crypto — DeFi MCP
  8. Web Scraping — Firecrawl
  9. Comparison Table
  10. FAQ

How to Install MCP Servers

All MCP servers use the same configuration pattern. Add them to your Claude Desktop config file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "server-name": {
      "command": "npx",
      "args": ["package-name"]
    }
  }
}

For Cursor, add to .cursor/mcp.json in your project root. For Claude Code, add to .mcp.json in your project root.

1. Browser Automation

Playwright MCP Popular 28k+ stars

Built by Microsoft. Gives Claude full browser control — navigate pages, fill forms, click buttons, extract data. Uses accessibility tree snapshots instead of screenshots, making it fast and token-efficient.

// Claude Desktop config
"playwright": {
  "command": "npx",
  "args": ["@playwright/mcp@latest"]
}

GitHub

Browserbase 3.1k+ stars

Cloud-hosted browser automation. Unlike Playwright (which runs locally), Browserbase gives Claude access to real browser instances in the cloud. Useful for tasks that need persistent sessions or bypass bot detection.

"browserbase": {
  "command": "npx",
  "args": ["@browserbasehq/mcp-server-browserbase"],
  "env": { "BROWSERBASE_API_KEY": "your-key" }
}

GitHub

Brave Search Official 700+ stars

From Brave. Lets Claude search the web in real-time. Returns web results, images, videos, and AI summaries. Free tier available (2,000 queries/month).

"brave-search": {
  "command": "npx",
  "args": ["@brave/brave-search-mcp-server"],
  "env": { "BRAVE_API_KEY": "your-key" }
}

GitHub

Exa Search 3.9k+ stars

Neural search engine for developers. Better than traditional search for finding specific technical content, code examples, and documentation. Great for research tasks.

"exa": {
  "command": "npx",
  "args": ["exa-mcp-server"],
  "env": { "EXA_API_KEY": "your-key" }
}

GitHub

3. Data & Databases

DbHub 2.2k+ stars

From Bytebase. Zero-dependency database MCP server. Connect Claude to PostgreSQL, MySQL, SQLite, SQL Server, or MariaDB. Inspect schemas and run queries directly in your chat.

"dbhub": {
  "command": "npx",
  "args": ["@bytebase/dbhub", "--dsn", "postgres://user:pass@localhost:5432/mydb"]
}

GitHub

Filesystem Official

From the official MCP servers repo. Gives Claude safe, controlled access to your local files. Read, write, search, and manage files with configurable access controls.

"filesystem": {
  "command": "npx",
  "args": ["@modelcontextprotocol/server-filesystem", "/path/to/allowed/dir"]
}

GitHub

4. Cloud Infrastructure

AWS MCP Servers Official 8.3k+ stars

From Amazon Web Services. A suite of 20+ specialized MCP servers for different AWS services. Manage EC2, S3, Lambda, DynamoDB, CloudFormation, and more directly from Claude.

"aws-docs": {
  "command": "npx",
  "args": ["@aws/aws-documentation-mcp-server"]
}

GitHub

Cloudflare Official 3.4k+ stars

From Cloudflare. Deploy and manage Workers, KV stores, R2 buckets, and D1 databases. Great for building and deploying edge applications directly from Claude.

"cloudflare": {
  "command": "npx",
  "args": ["@cloudflare/mcp-server-cloudflare"]
}

GitHub

5. Productivity

Notion Official 3.9k+ stars

From Notion. Query databases, create pages, manage content in your Notion workspace. Useful for project management, note-taking, and knowledge base workflows.

"notion": {
  "command": "npx",
  "args": ["@notionhq/notion-mcp-server"],
  "env": { "NOTION_API_KEY": "ntn_..." }
}

GitHub

Memory Official

From the official MCP servers repo. Gives Claude persistent memory across conversations using a knowledge graph. Store facts, relationships, and context that survives between chats.

"memory": {
  "command": "npx",
  "args": ["@modelcontextprotocol/server-memory"]
}

GitHub

6. DeFi & Crypto

DeFi MCP 12 Tools

A comprehensive MCP server for DeFi and cryptocurrency data. Get real-time token prices, check wallet balances across 9 blockchains, estimate gas fees, and get DEX swap quotes — all from Claude Desktop.

Example prompts:

// Claude Desktop config
"defi-mcp": {
  "command": "npx",
  "args": ["defi-mcp"]
}

// Or run the hosted REST API (no install needed):
curl https://agent-gateway-kappa.vercel.app/v1/defi-mcp/api/prices?ids=bitcoin,ethereum,solana

GitHub · Setup Guide · API Catalog

7. Web Scraping

Firecrawl 5.6k+ stars

Turn any website into clean, structured data. Firecrawl handles JavaScript rendering, bot detection, and pagination automatically. Perfect for research, competitor analysis, and data collection.

"firecrawl": {
  "command": "npx",
  "args": ["-y", "firecrawl-mcp"],
  "env": { "FIRECRAWL_API_KEY": "your-key" }
}

GitHub

Comparison Table

ServerCategoryAPI Key?Free TierBest For
PlaywrightBrowserNoUnlimitedLocal web automation
BrowserbaseBrowserYes100 sessionsCloud browser control
Brave SearchSearchYes2,000 queries/moGeneral web search
ExaSearchYes1,000 queries/moTechnical/research search
DbHubDatabaseNoUnlimitedSQL database access
FilesystemFilesNoUnlimitedLocal file management
AWS MCPCloudYes (IAM)AWS free tierAWS infrastructure
CloudflareCloudYesWorkers free tierEdge deployment
NotionProductivityYesFree planKnowledge management
MemoryProductivityNoUnlimitedPersistent AI memory
DeFi MCPCryptoNo50 free creditsToken prices, wallets, DEX
FirecrawlScrapingYes500 creditsWeb scraping & crawling

FAQ

How many MCP servers can I run at once?

There's no hard limit, but each server uses memory and startup time. Most users run 3-5 servers that match their daily workflow. You can always add or remove servers by editing your config file.

Do MCP servers work with Cursor and other editors?

Yes. Most MCP servers work with Claude Desktop, Cursor, Continue.dev, Claude Code, and any MCP-compatible client. The configuration format is slightly different for each client — check the client's docs for details.

Are MCP servers safe?

MCP servers run locally on your machine with the permissions you grant them. Always review what access a server requests (filesystem paths, API keys, database connections) and only install servers from trusted sources. Official servers from companies like Microsoft, Brave, and AWS are well-maintained and audited.

Where can I find more MCP servers?

The best directories for discovering MCP servers:

Try DeFi MCP with Claude Desktop

Get real-time crypto prices, wallet balances, gas estimates, and DEX quotes directly in Claude. 12 tools, 9 blockchains, no API key required to start.

View on GitHub Setup Guide