Align Server Card with server.json compatibility#2443
Merged
dsp-ant merged 1 commit intosep/mcp-server-cardsfrom Mar 26, 2026
Merged
Align Server Card with server.json compatibility#2443dsp-ant merged 1 commit intosep/mcp-server-cardsfrom
dsp-ant merged 1 commit intosep/mcp-server-cardsfrom
Conversation
- Make description required to match server.json schema - Make capabilities optional to avoid breaking existing server.json files - Remove MCP Resource endpoint (mcp://server-card.json) — discovery should happen pre-connection via .well-known, not post-connection - Remove registry endpoint section — registry already serves server.json - Clarify that local/stdio servers use server.json + Registry path Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Contributor
SamMorrowDrums
left a comment
There was a problem hiding this comment.
A bit late but thanks for this @tadasant
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Building on #2127
description→ required: Matches the existingserver.jsonschema wheredescriptionis in therequiredarray. Avoids an unnecessary divergence.capabilities→ optional: Sinceserver.jsonis being redefined in terms of the Server Card shape, makingcapabilitiesrequired would break all existingserver.jsonfiles that don't have it. Optional keeps the superset relationship clean.mcp://server-card.jsonresource requires an established MCP connection, which defeats the purpose of pre-connection discovery. Removed in favor of focusing on.well-knownfor remote servers.server.json— no need to spec a separate mechanism here.server.json+ the MCP Registry rather than Server Cards.