This document describes the API for the official MCP Registry hosted at registry.modelcontextprotocol.io.
This API is based on the generic registry API with additional endpoints and authentication. For publishing servers using the API, see the publishing guide.
- Production:
https://registry.modelcontextprotocol.io - Staging:
https://staging.registry.modelcontextprotocol.io
- Live API Docs - Stoplight elements with try-it-now functionality
- OpenAPI Spec - Complete machine-readable specification
The official registry implements the Generic Registry API with the following specific configurations and extensions:
Publishing requires namespace-based authentication:
- GitHub OAuth - For
io.github.*namespaces - GitHub OIDC - For publishing from GitHub Actions
- DNS verification - For domain-based namespaces (
com.example.*) - HTTP verification - For domain-based namespaces (
com.example.*)
See Publisher Commands for authentication setup.
The official registry enforces additional package validation requirements when publishing.
The official registry extends the GET /v0.1/servers endpoint with additional query parameters for improved discovery and synchronization:
updated_since- Filter servers updated after RFC3339 timestamp (e.g.,2025-08-07T13:15:04.280Z)search- Case-insensitive substring search on server names (e.g.,filesystem)- This is intentionally simple. For more advanced searching and filtering, use a subregistry.
version- Filter by version (currently supportslatestfor latest versions only)
These extensions enable efficient incremental synchronization for downstream registries and improved server discovery. Parameters can be combined and work with standard cursor-based pagination.
Example: GET /v0.1/servers?search=filesystem&updated_since=2025-08-01T00:00:00Z&version=latest
- POST
/v0.1/auth/dns- Exchange signed DNS challenge for auth token - POST
/v0.1/auth/http- Exchange signed HTTP challenge for auth token - POST
/v0.1/auth/github-at- Exchange GitHub access token for auth token - POST
/v0.1/auth/github-oidc- Exchange GitHub OIDC token for auth token - POST
/v0.1/auth/oidc- Exchange Google OIDC token for auth token (for admins)
- GET
/metrics- Prometheus metrics endpoint - GET
/v0.1/health- Basic health check endpoint - PUT
/v0.1/servers/{serverName}/versions/{version}- Edit specific server version