Merged
Conversation
Declares server metadata, npm package reference, transport type, and required environment variables for the MCP Registry.
Registry uses this field to verify the npm package matches its published server metadata.
b3e98af to
12fecb4
Compare
Greptile OverviewGreptile SummaryAdds MCP Registry publishing support with automated version syncing between
Issues found:
Confidence Score: 3/5
|
69c4f06 to
e48fd2b
Compare
Adds mcp-publisher install and OIDC-authenticated publish steps. Includes a sed step to sync server.json version from the git tag as a fallback if the file version drifts.
Replaces direct changelogen invocation with a Node script that bumps package.json, patches server.json to match, then commits, tags, and pushes. Forwards CLI args to changelogen (e.g. --major, --patch).
416e28f to
eacefc8
Compare
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.
The package wasn't discoverable through the MCP Registry. This adds everything needed for automated publishing:
server.jsonmetadata with environment variable declarations,mcpNameinpackage.jsonfor registry verification, and OIDC-authenticated publish steps in the release workflow.The release script (
scripts/release.mjs) replaces the direct changelogen call to keepserver.jsonversion in sync withpackage.jsonon every release. It forwards CLI args to changelogen sopnpm release -- --majorstill works. The CI workflow also patchesserver.jsonfrom the git tag as a fallback.