Open-source software for Joomla, Gitea, and web platforms. Home of MokoSuite, MokoGitea, and MokoCLI.
Tennessee
releases/mcp-release-process.-
MCP Release Process
How to build and deploy MCP servers.
Build
MCP servers live in the mokoplatform monorepo:
cd A:/mokoplatform/mcp/servers/{server-name}
npm run build
This compiles TypeScript to JavaScript in dist/.
Deploy
MCP servers run locally within Claude Code sessions. Deployment is simply:
- Build the updated server
- Restart your Claude Code session (reloads MCP servers from
~/.claude/.mcp.json) - Test by calling a tool from the updated server
No remote deployment needed — MCP servers are local processes.
Testing
After building:
- Verify the server starts without errors
- Test each modified tool with a sample call
- Verify all connections (dev, demo, live) respond correctly
- Check error handling for invalid inputs and network failures
Versioning
MCP servers use informational semver in package.json but don't publish versioned releases. The main branch is always the deployed version.
Pages