Publish updated MCP server metadata to the MCP Registry
Add this skill
npx mdskills install danmartuszewski/publish-mcpWell-structured release automation with clear steps, appropriate tooling, and proper version control flow
1---2name: publish-mcp3description: Publish updated MCP server metadata to the MCP Registry4disable-model-invocation: true5argument-hint: []6---78Publish the hop MCP server to the MCP Registry with the latest release version.910## Steps11121. Get the latest release version from GitHub:13 ```14 gh release view --repo danmartuszewski/hop --json tagName -q .tagName15 ```16 Strip the leading `v` prefix (e.g. `v1.2.0` → `1.2.0`).17182. Read `server.json` and check if the version already matches. If it does, inform the user and stop.19203. Update the `version` field in `server.json` to the latest release version.21224. Commit the change:23 ```24 git add server.json && git commit -m "chore: bump server.json version to <version>"25 ```26275. Push to remote:28 ```29 git push30 ```31326. Publish to the MCP Registry:33 ```34 mcp-publisher publish35 ```36377. Report the result to the user.38
Full transparency — inspect the skill content before installing.