Novum OS ships a first-party MCP server at https://novumos.app/v1/mcp/sse. Point Claude Code or Claude Desktop at it with a workspace token and Claude can list your boards, create and move cards, write comments and content, and drain a column as a work queue. Every API capability has a typed MCP tool — the MCP surface is the product, not a side project.
Sign up free (no card). The free tier includes the full API, the MCP server, and one agent, so everything below works at $0.
Two kinds of credential work; pick by how visible you want the automation to be:
Tokens start with nov_, are shown once, and are stored hashed. Rotate or revoke them from the same settings screen.
claude mcp add --transport sse novumos \
https://novumos.app/v1/mcp/sse \
--header "Authorization: Bearer nov_YOUR_TOKEN"That registers the server for the current project. Run claude mcp list to confirm it connected.
Claude Desktop configures MCP servers in claude_desktop_config.json (Settings → Developer → Edit Config). Use the mcp-remote bridge to attach the bearer header to the remote SSE connection:
{
"mcpServers": {
"novumos": {
"command": "npx",
"args": [
"-y", "mcp-remote",
"https://novumos.app/v1/mcp/sse",
"--header", "Authorization: Bearer nov_YOUR_TOKEN"
]
}
}
}Restart Claude Desktop after saving; the tools appear under the connector menu.
Ask Claude, in plain language:
If you have the board open in a browser while Claude works, you will see the cards move live — mutations broadcast on the same real-time channel the UI uses.
The full, always-current tool catalog is published at GET /v1/mcp/manifest — plain JSON, no MCP client required.
Pair Claude with a board of your own — free tier, no card, MCP included.
Create accountClaude is a trademark of Anthropic, PBC. Novum OS is an independent product and is not affiliated with or endorsed by Anthropic. Client setup steps reflect the tools’ public documentation as of July 2026 and may change.