When After merging changes to the server, the following steps need to be done:
-
Server version bump (major/minor/patch)
-
Publish to MCP registry.
Publishing is done manually through a developer machine. This enabled bundling multiple features/fixes under one release.
When you want to publish a new version:
-
Pull
mainlocally. -
Bump the server version numbers in the following files:
package.json,server.json. Note that there may be more files where the version number -
Choose between major, minor or patch bump accordingly.
-
Run
npm publish. This command should instruct you how to authenticate with NPM. The full command should look like this:
NPM_CONFIG__AUTHTOKEN=<one_time_token>npm publish --access public