Official MCP Registry Server.json Requirements
Written by punkpeye on .
- Overview
- Namespace Authentication
- Package Ownership Verification
- Restricted Registry Base URLs
- _meta Namespace Restrictions
This document describes the additional requirements and validation rules that apply when publishing to the official MCP Registry at registry.modelcontextprotocol.io.
For step-by-step publishing instructions, see the publishing guide.
This document is a mirror of theofficial reference.
Overview
While the generic server.json format defines the base specification, the official registry enforces additional validation to ensure:
Namespace authentication - Servers are published under appropriate namespaces
Package ownership verification - Publishers actually control referenced packages
Restricted registry base urls - Packages are from trusted public registries
_meta- Restricted topublisherkey only
Namespace Authentication
Publishers must prove ownership of their namespace. For example to publish to com.example/server, the publisher must prove they own the example.com domain.
See the publishing guide for authentication details for GitHub and domain namespaces.
Package Ownership Verification
All packages must include metadata proving the publisher owns them. This prevents impersonation and ensures authenticity (see more reasoning in #96).
For detailed verification requirements for each registry type, see the publishing guide.
Restricted Registry Base URLs
Only trusted public registries are supported. Private registries and alternative mirrors are not allowed.
Supported registries:
NPM:
https://registry.npmjs.orgonlyPyPI:
https://pypi.orgonlyNuGet:
https://api.nuget.org/v3/index.jsononlyDocker/OCI:
Docker Hub (
docker.io)GitHub Container Registry (
ghcr.io)Google Artifact Registry (
*.pkg.dev)Azure Container Registry (
*.azurecr.io)Microsoft Container Registry (
mcr.microsoft.com)
MCPB:
https://github.comreleases andhttps://gitlab.comreleases only
_meta Namespace Restrictions
The _meta field in server.json allows publishers to include custom metadata alongside their server definitions.
Publisher-Provided Metadata
When publishing to the official registry, only data under the specific key . Any other keys in the _meta object are silently dropped during publishing and will not be stored or returned by the registry.
Example:
Size limit: The publisher-provided extension is limited to 4KB (4096 bytes) of JSON. If the marshaled JSON exceeds this limit, publishing will fail with an error indicating the actual size.
Registry API Metadata vs server.json Metadata
The _meta field in server.json is different from the _meta field returned in registry API responses:
In : The
_metafield contains publisher-provided custom metadata underio.modelcontextprotocol.registry/publisher-providedIn API responses: The
_metafield is returned as a separate property at the response level (not insideserver.json) and contains registry-managed metadata like:status: Server lifecycle status (active, deprecated, deleted)publishedAt: When the server was first publishedupdatedAt: When the server was last updatedisLatest: Whether this is the latest version
Example: What you publish (server.json)
Example: What the registry API returns
Notice how the registry API response has two _meta fields:
Inside the
serverobject: Your publisher-provided metadata (preserved from server.json)At the response level: Registry-managed metadata (automatically added by the registry)
Written by punkpeye (@punkpeye)