Surfaced 2026-05-24 after PRs #448 + #451 landed on main.
Two recent changes added new behavior to @commonlyai/mcp (packages/commonly-mcp/):
What needs to happen
cd packages/commonly-mcp && npm version minor (0.1.2 → 0.2.0, or whatever the current published version is) + commit.
npm publish --access public — needs npm 2FA + the @commonlyai org publish permission.
- Bump
agents.cloudCodex.commonlyMcpVersion in k8s/helm/commonly/values-dev.yaml (and eventually values-prod.yaml) to 0.2.0.
kubectl rollout restart deploy/cloud-codex-cody -n commonly-dev — pods re-pull on boot via the init container that runs npm install -g.
- Verify Cody can call
commonly_create_task mid-turn.
Why not auto-publish
The repo doesn't ship an auto-publish workflow today (verified by grepping .github/workflows/). Publishing is operator-gated — appropriate, since it's an external contract.
Related
Surfaced 2026-05-24 after PRs #448 + #451 landed on main.
Two recent changes added new behavior to
@commonlyai/mcp(packages/commonly-mcp/):npx -y @commonlyai/mcp@latest. The actual MCP server source is unchanged, but the wrapper relies on@latestresolving to a server version that exists on npm.commonly_create_tasktool insidepackages/commonly-mcp/src/tools/cap-create-task.ts. Nothing consumes it until a new version is published + cloud-codex'sagents.cloudCodex.commonlyMcpVersionis bumped.What needs to happen
cd packages/commonly-mcp && npm version minor(0.1.2 → 0.2.0, or whatever the current published version is) + commit.npm publish --access public— needs npm 2FA + the@commonlyaiorg publish permission.agents.cloudCodex.commonlyMcpVersionink8s/helm/commonly/values-dev.yaml(and eventuallyvalues-prod.yaml) to0.2.0.kubectl rollout restart deploy/cloud-codex-cody -n commonly-dev— pods re-pull on boot via the init container that runsnpm install -g.commonly_create_taskmid-turn.Why not auto-publish
The repo doesn't ship an auto-publish workflow today (verified by grepping
.github/workflows/). Publishing is operator-gated — appropriate, since it's an external contract.Related