NovumOS ships a first-party MCP server at https://novumos.app/v1/mcp/http — the current standard Streamable HTTP transport. 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 http novumos \
https://novumos.app/v1/mcp/http \
--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 connection:
{
"mcpServers": {
"novumos": {
"command": "npx",
"args": [
"-y", "mcp-remote",
"https://novumos.app/v1/mcp/http",
"--header", "Authorization: Bearer nov_YOUR_TOKEN"
]
}
}
}Restart Claude Desktop after saving; the tools appear under the connector menu.
The server speaks Streamable HTTP at /v1/mcp/http — the current MCP standard transport and the endpoint you should point clients at. The older HTTP+SSE endpoint at /v1/mcp/sse stays mounted for back-compat, but the MCP spec marks HTTP+SSE deprecated, so prefer /v1/mcp/http for anything new. Both endpoints require the same Authorization: Bearer nov_… header and enforce identical workspace (tenant) isolation.
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. Every tool wraps a REST endpoint documented in the interactive API reference, so you can read and script the same operations without MCP at all.
Pair Claude with a board of your own — free tier, no card, MCP included.
Create account