Claude DesktopCurated List2026

Best MCP Servers for Claude Desktop in 2026

Claude Desktop supports MCP servers out of the box — but with nearly 1,000 servers in the ecosystem, knowing where to start is the hard part. This guide covers the six highest-impact servers to install first, chosen for their reliability, breadth of use, and ease of setup.

How Claude Desktop loads MCP servers: Each server is declared in ~/Library/Application Support/Claude/claude_desktop_config.json (Mac) or %APPDATA%\Claude\claude_desktop_config.json (Windows). Claude automatically starts the listed servers when it launches and exposes their tools to every conversation. You can add as many servers as you like — they run in parallel.
1

Filesystem MCP

File System

The single most useful first install. Gives Claude read/write access to a directory you specify, enabling it to edit code files, write documents, and navigate your project tree. Install takes under a minute.

npx -y @modelcontextprotocol/server-filesystem /path/to/your/project
View full details
2

GitHub MCP Server

Version Control

Official server from Anthropic. Lets Claude create branches, open pull requests, read file contents, and comment on issues — all inside Claude Desktop. Essential for any developer workflow.

npx -y @modelcontextprotocol/server-github
View full details
3

PostgreSQL MCP

Databases

Ask Claude questions about your database in plain English. It generates and runs SQL, then summarises the results. Works in read-only mode by default so production databases are safe.

npx -y @modelcontextprotocol/server-postgres postgresql://localhost/mydb
View full details
4

Playwright MCP

Browser Automation

Gives Claude control of a real browser. Useful for scraping sites without an API, automating form submissions, taking screenshots for bug reports, and end-to-end testing.

npx -y @playwright/mcp
View full details
5

Brave Search MCP

APIs & Integrations

Lets Claude search the web for up-to-date information. Useful when you need current news, documentation that post-dates Claude's training, or product comparisons.

npx -y @modelcontextprotocol/server-brave-search
View full details
6

Memory MCP

Productivity

Gives Claude a persistent knowledge base that survives across conversations. Store preferences, project context, and facts you want Claude to remember without re-explaining every session.

npx -y @modelcontextprotocol/server-memory
View full details

Tips for getting the most out of Claude Desktop + MCP

  • Start with Filesystem + one domain server. Installing too many at once makes it harder to troubleshoot. Add Filesystem first, verify it works, then add GitHub or Postgres.
  • Use read-only modes on databases. Most database servers accept a connection string — append ?sslmode=require and use a read-only database user to avoid accidental mutations.
  • Restart Claude Desktop after config changes. Claude reads the config file at startup — any changes to claude_desktop_config.json require a full restart to take effect.
  • Check the MCP icon in the toolbar. Once servers are loaded, a plug icon appears in the Claude Desktop input bar. Click it to see which tools are available and which servers are active.

Ready to explore more servers?

Browse all 1,000+ MCP servers categorised by use case.

Browse All MCP Servers