← Back to Dashboard
1. Governance & the Linux Foundation2. MCP Gateways & Proxies3. Enterprise Security & Audit4. Multimodal & Audio Content5. The Official MCP Registry

The Official MCP Registry

📚 MCP in 20268 min120 XP

A Home for Server Metadata

The MCP Registry is the official, centralized metadata repository for publicly accessible MCP servers - currently in preview - backed by contributors including Anthropic, GitHub, PulseMCP, and Microsoft.

💡 Key Insight: The Registry does not host server code. It hosts metadata that points to packages already published on npm, PyPI, or Docker Hub, plus connection details for remote servers.

How It Fits Together

LayerRoleExample
Package registriesHost the actual code and binariesnpm, PyPI, Docker Hub
MCP RegistryHosts server.json metadata mapping a server name to its package"weather v1.2.0" maps to npm:weather-mcp
Downstream aggregatorsPull the Registry's REST API and add curation, ratings, and searchMCP marketplaces and catalogs

Trust: Namespace Authentication

Servers publish under reverse-DNS names such as io.github.username/server or com.example/server. Publishing under a namespace requires proving ownership of the matching GitHub account or domain, so only the legitimate owner of a namespace can publish under it.

  • No private servers: the Registry only lists servers whose install method (an npm or Docker package) or endpoint is publicly reachable. Private, internal-only servers need a self-hosted registry instead.
  • Security scanning is delegated: the Registry relies on the underlying package registries (npm, PyPI, Docker Hub) and downstream aggregators for vulnerability scanning. It focuses on namespace authentication and metadata hosting, plus manual takedown for spam or malicious listings.
🎯 Pro Tip: The MCP Registry is meant to be consumed by aggregators and marketplaces via its REST API, not queried directly by host applications. When picking a server to install, you'll typically go through a downstream catalog - like the community registry mcp.so covered earlier - that syncs its listings from the official Registry.
🧪 Knowledge Check
Press 1-4 to select1 of 3
What does the official MCP Registry actually host?
The full source code of every MCP server
Metadata (server.json) that points to packages already published on npm, PyPI, or Docker Hub
A live sandboxed copy of each server
Only Anthropic's own first-party servers