This repository defines a TypeScript source-of-truth and generated JSON Schema for MCP Server Cards. Server Cards are a static metadata document that describes a remote MCP server enough for clients to discover and connect to it before initialization.
It tracks SEP-2127 and is intended to be lifted directly into the main spec when Server Cards graduate (see Graduation plan below).
A prior attempt to land these types directly in the core spec (modelcontextprotocol#2652) is being relaunched here as an experimental extension while the SEP itself is still under review.
A Server Card is a JSON document — hosted at any unreserved URI, with GET <streamable-http-url>/server-card reserved as the recommended location (see discovery.md) — describing:
- The server's identity (
name,version,description, optionaltitle/icons/repository/websiteUrl) - Its remote transport endpoints (URLs, headers, variable templates, supported protocol versions)
- Optional registry-style extension metadata (
_meta)
Server Cards intentionally omit primitive listings (tools, resources, prompts) — those remain subject to runtime listing via the protocol's standard list operations. They also intentionally omit local installation metadata — see Relationship to the MCP Registry.
A Server Card describes remote connectivity only. Metadata for locally-installable servers, packages, registries (npm, PyPI, OCI, NuGet, MCPB), runtime hints, command-line arguments, environment variables, lives in the MCP Registry's server.json schema, which is owned by the registry, not by this extension.
Vendors who genuinely need to attach install hints to a Server Card can use namespaced _meta extension metadata, which remains the card's extension point.
schema.ts # TypeScript source of truth (single file)
schema.json # Generated JSON Schema 2020-12 (do not edit by hand)
scripts/
generate-schema.ts # Generates schema.json from schema.ts
validate-examples.ts # Validates examples/ against the generated schema
examples/
ServerCard/{valid,invalid} # Example Server Card documents
The generated schema.json is checked into the repo so consumers can grab it without running the toolchain.
npm install
npm run generate # regenerates schema.json from schema.ts
npm run validate # runs all examples through ajv against schema.json
npm run check # asserts schema.json is in sync with schema.ts and tsc passes
npm run format # prettier writeWhen you change schema.ts, always run npm run generate and commit the updated schema.json in the same commit. CI runs npm run check and will fail if they drift.
The $schema field on every document MUST be a URL of the form:
https://static.modelcontextprotocol.io/schemas/v1/<name>.schema.json
Schema URLs are versioned by their vN segment. Server Card objects are open: the schema does not set additionalProperties: false, and vendor-specific data belongs in the namespaced _meta field. Once v1 is published a breaking revision of the shape would publish a new vN family rather than mutating v1 in place. The v1 shape is still pre-release and card-only — it intentionally does not include the registry-shaped Server / packages types.
When the SEP is accepted and Server Cards graduate from this experimental extension:
- The contents of
schema.tsin this repo move intoschema/draft/schema.tsofmodelcontextprotocol/modelcontextprotocol. The twoMetaObjectandIcondefinitions inlined here at the bottom ofschema.tsalready exist in the main spec and are dropped from the migration. - The main spec's existing
scripts/generate-schemas.tsregeneratesschema/draft/schema.json(and downstreamdocs/specification/draft/schema.mdx) — no per-extension generator is required there. Both generators leave objects open (noadditionalProperties: false), so the generated shape matches without flag changes. - Published documents update their
$schemato point at the main spec's hosted schema URL (e.g.,https://static.modelcontextprotocol.io/schemas/v1/server-card.schema.jsonserved frommodelcontextprotocol/static). - This repository is archived with a pointer to the relevant section of
schema/draft/schema.tsin the main spec.
The schema.ts in this repo is deliberately structured to be copy-pasted into the main spec's schema/draft/schema.ts with no transformation other than removing the inlined MetaObject / Icon definitions.
- SEP-2127: MCP Server Cards (PR)
- SEP-2133: Extensions framework (PR)
- Abandoned core spec PR (superseded by this repo): modelcontextprotocol#2652
- MCP Registry
server.jsonschema