| name | publish-mcp |
| description | Publish updated MCP server metadata to the MCP Registry |
| disable-model-invocation | true |
| argument-hint | [] |
Publish the hop MCP server to the MCP Registry with the latest release version.
Steps
-
Get the latest release version from GitHub:
gh release view --repo danmartuszewski/hop --json tagName -q .tagName
Strip the leading v prefix (e.g. v1.2.0 → 1.2.0).
-
Read server.json and check if the version already matches. If it does, inform the user and stop.
-
Update the version field in server.json to the latest release version.
-
Commit the change:
git add server.json && git commit -m "chore: bump server.json version to <version>"
-
Push to remote:
git push
-
Publish to the MCP Registry:
mcp-publisher publish
-
Report the result to the user.