Skip to content

Publish Dev Proxy MCP Server

Garry Trinder edited this page Jan 6, 2026 · 2 revisions

Prerequisites

  • mcp-publisher tool
    • brew install mcp-publisher
  1. Make your code changes and test locally
  2. Bump the version in both files:
npm version patch

Then update version in server.json to match

  1. Build and publish to npm:
npm run build
npm publish --access public
  1. Publish to MCP Registry:
mcp-publisher login github  # if not already authenticated
mcp-publisher publish
  1. Commit and push:
git add .
git commit -m "Release vX.X.X"
git push origin main --tags

Note: The registry tokens (.mcpregistry_* files) are local and excluded from git — you may need to re-authenticate with mcp-publisher login github if they expire.

Clone this wiki locally