feat: prepare 1.0.2 for MCP Registry publish#10
Merged
Conversation
The third-party server list in modelcontextprotocol/servers/README.md has been retired in favor of the official MCP Server Registry (registry.modelcontextprotocol.io). This patch adds the metadata required to publish there: - package.json: mcpName "io.github.intent-driven-software/idf-mcp" (npm-package ownership-verification marker the Registry validates) - server.json: Registry manifest with stdio transport + the five public env vars (IDF_SERVER, IDF_DOMAIN, IDF_BOOTSTRAP, IDF_ONTOLOGY_PATH, IDF_AUTH_TOKEN) - version bump 1.0.1 -> 1.0.2 in package.json, package-lock.json, src/server.js (release.yml guard requires the three to match) - CHANGELOG entry with the post-merge publish steps After merge, tag v1.0.2 to trigger npm publish via release.yml; then run `mcp-publisher login github && mcp-publisher publish` from repo root to surface the server in the Registry. No behavioural changes. Tool surface, wire shape, and tests are identical to 1.0.1.
… limit mcp-publisher publishes against https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json where ServerDetail.description has maxLength=100. The previous 218-char description was schema-invalid and would have been rejected at publish time. The package.json description (npm-side) is unchanged — npm has no such limit and the longer copy is more useful in npm search results.
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.
Summary
The third-party server list in
modelcontextprotocol/servers/README.mdhas been retired in favor of the official MCP Server Registry (registry.modelcontextprotocol.io) —CONTRIBUTING.mdin that repo now redirects all new submissions there. This PR adds the metadata required to publish@intent-driven/mcp-serverto the Registry.Changes
package.json— addsmcpName: "io.github.intent-driven-software/idf-mcp"(the npm-package ownership-verification marker the Registry validates) and bumps version 1.0.1 → 1.0.2.server.json— new file at repo root, the Registry manifest. Declares stdio transport and the five public env vars (IDF_SERVER,IDF_DOMAIN,IDF_BOOTSTRAP,IDF_ONTOLOGY_PATH,IDF_AUTH_TOKEN), schema-validated againsthttps://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json.src/server.js— MCP Server identity version → 1.0.2 (matches therelease.ymlguard which requirespackage.jsonversion to equal the tag withoutvprefix).package-lock.json— synced.CHANGELOG.md—[1.0.2] — 2026-05-06section with the post-merge publish steps.Why org namespace
The Registry's GitHub-based authentication accepts
io.github.<username>/*orio.github.<orgname>/*(per authentication docs). Using the org namespace keeps the discovery URL aligned with the source repository (intent-driven-software/idf-mcp) instead of routing through the maintainer's personal handle.Post-merge steps (manual, on maintainer's machine)
Test plan
npm test— 41/41 passed locally (3 test files: jsonSchema, handlers, descriptions).ci.yml.release.ymlguard verifiespackage.jsonversion matches tag, runs tests, publishes with provenance.curl https://registry.modelcontextprotocol.io/v0.1/servers?search=io.github.intent-driven-software/idf-mcpreturns the entry within minutes ofmcp-publisher publish.