CLI · SDKs · MCP
Script, embed, and automate PlanMagnet from npm & PyPI.
Everything teams will need to drive PlanMagnet from the terminal or their own code — a control-plane CLI, a TypeScript and Python SDK, and a Model Context Protocol server so AI assistants can plan and triage alongside the team.
CLI
Control-plane client `planmagnet` — drive the workspace from your terminal.
A planned control-plane CLI for roadmaps, issues, sprints, releases, docs, and the AI assistant. Sign in once, then drive every part of PlanMagnet from a scriptable subcommand suite — with the same dual-token auth the apps use.
npm install -g @planmagnet/cliNode SDK
Official TypeScript SDK for the PlanMagnet API.
A planned typed, promise-based SDK for any Node or Bun project — automate roadmap updates, sync issues across systems, build internal tools on top of PlanMagnet, or wire PlanMagnet into your CI/CD.
npm install @planmagnet/sdkPython SDK
Requires Python ≥ 3.10Async Python SDK for pipelines & notebooks.
A planned fully async Python SDK on httpx — perfect for data pipelines that read roadmap & sprint metrics, automation scripts, and Jupyter notebooks analysing delivery.
pip install planmagnet-sdkMCP Server
Let AI assistants plan & triage on PlanMagnet.
A planned Model Context Protocol server that exposes safe PlanMagnet tools (query issues, draft release notes, summarise sprint health) to Claude, Cursor, and any MCP-compatible AI client. Drop the block below into your client config to wire it up.
npx -y @planmagnet/mcp{
"mcpServers": {
"planmagnet": {
"command": "npx",
"args": ["-y", "@planmagnet/mcp"]
}
}
}