The official MCP registry was announced on September 8th, 2025.
This project aims to showcase what exists in that registry.
- Val.Town & Deno
- Hono server
- Official MCP Registry API
- Webawesome components and icons
This project is available on Val.Town and can be accessed at: https://cameronpak-mcp-registry.web.val.run
This server acts as a proxy for the official MCP Registry API, allowing you to access registry endpoints through this server. All requests are forwarded to https://registry.modelcontextprotocol.io
.
Get a list of all available MCP servers.
# Via proxy curl "/v0/servers" # With parameters curl "/v0/servers?limit=10&search=git"
Official Docs: List Servers
Get detailed information about a specific MCP server by ID.
# Via proxy curl "/v0/servers/{server-id}" # Example curl "/v0/servers/github"
Official Docs: Get Server
Publish a new MCP server to the registry (requires authentication).
# Via proxy curl -X POST "/v0/publish" \ -H "Content-Type: application/json" \ -H "Authorization: Bearer YOUR_TOKEN" \ -d '{ "name": "my-mcp-server", "version": "1.0.0", "description": "My awesome MCP server" }'
Official Docs: Publish Server
Visit the root URL (/
or /docs
) to access the web interface for browsing MCP servers with search and filtering capabilities.
GET /v0/health
- Health checkGET /v0/ping
- Ping the registryGET /docs
- Redirect to official API documentation