The MCP Server Registry is a central repository of Model Context Protocol servers. This registry enables easy discovery and installation of MCP servers for clients like Claude Desktop, Cursor, and Windsurf.
Model Context Protocol (MCP) is a standard for building LLM-powered tools. It enables language models to use external tools, resources, and capabilities in a standardized way.
- 🔄 Standard Interface: Common protocol for LLMs to interact with tools
- 🧩 Composable: Mix and match tools from different providers
- 🚀 Portable: Works across different clients and environments
Browse the servers directory to find MCP servers that match your needs. Each server has its own directory with:
- 📄
[server-name].json- Configuration details including endpoint, capabilities, and version - 📝
README.md- Documentation with usage examples and requirements - 🧪 Examples folder (optional)
You can install servers from this registry using:
-
MCPM: Our recommended tool
# Install a server by name mcpm add server-name -
Manual Configuration: Add the server URL directly to your MCP client's configuration
We welcome contributions! There are two ways to add your server to the registry:
Simply create a new GitHub issue with:
- Title: "Add server: [your-server-name]"
- Body: URL to your server details or API documentation
- We'll automatically generate the necessary files and create a PR for you
For more control over your submission:
- Fork this repository
- Create a JSON file in
mcp-registry/servers/named[your-server-name].json. The JSON should follow our schema - Validate locally to ensure correct schema
If validation succeeds, you should see:
python scripts/validate_manifest.py | grep "your-server-name"
✓ your-server-name: Valid - Submit a pull request
mcp-registry/
├── README.md # Overview, usage instructions
├── servers/ # Directory containing all registered servers
│ ├── [server-1-name].json # Server metadata and configuration
│ ├── [server-2-name].json
│ └── ...
└── schema/ # Schema definitions
└── server-schema.json # JSON Schema for server validation
This registry is licensed under the MIT License - see the LICENSE file for details.