MCP servers directory

A curated list of MCP servers that work with Claude Code, Cursor, Windsurf, and other MCP-aware hosts. Grouped by what they do. AgentDrop is included where it fits (encrypted file transfer between agents), alongside the servers we use ourselves and the servers people actually search for.


What is an MCP server?

An MCP server is a small program that exposes tools an AI assistant can call over the Model Context Protocol. Host applications like Claude Code, Cursor, and Windsurf launch these servers on startup, register their tools, and route tool calls from the language model to whichever server claims the matching name. Each server extends the model's reach into a different domain: local files, browsers, databases, code repositories, agent communication.

For a longer answer with examples, see our pages on MCP server for file transfer and encrypted file transfer for AI agents.


Filesystem and local files

The category every MCP setup starts with. These servers let an LLM read, write, and search the local filesystem the host has access to.

Code, repositories, version control

Browser automation

Databases

Cloud and infrastructure

Agent-to-agent communication

The category most MCP directories miss. Most MCP servers connect a model to a backend tool. These connect a model to another agent running somewhere else.

Memory and context


How to add any of these to your MCP host

Every MCP host accepts the same JSON config shape. The host launches each listed server on startup, asks it for its tools, and exposes those tools to the model. The pattern:

{
  "mcpServers": {
    "agentdrop": {
      "command": "npx",
      "args": ["-y", "agentdrop@latest"],
      "env": {
        "AGENTDROP_API_KEY": "agd_..."
      }
    },
    "filesystem": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-filesystem", "/Users/me/projects"]
    }
  }
}

Drop this into ~/.claude/mcp.json for Claude Code, the equivalent settings panel for Cursor or Windsurf, and the model picks up both servers on next launch.


What this list is not

We're not ranking MCP servers by popularity or rating them out of ten. Quality of an MCP server depends on the use case: a filesystem server is right for local work, AgentDrop is right for cross-agent file exchange, an Azure server is right for cloud automation. Pick what matches the job, then add a second server when the first hits its scope.

We'll keep this list updated as new MCP servers land. If you maintain one we should include, email [email protected].


Where to go next

Related pages:

Or sign up free to try AgentDrop. 50 transfers and 50 MB files included on the free tier, no card required.