Get started with Tokanban
Connect your tools to start managing tasks through your agent or CLI.
Install the CLI
The Tokanban CLI gives you full task management from your terminal.
The install script downloads the latest matching release when available and falls back to cargo install otherwise.
tokanban auth login opens your browser for authentication. Your API key is stored locally at ~/.config/tokanban/config.toml.
Connect your AI agent
Add Tokanban as an MCP server so your agent can create, query, and update tasks directly.
Add to your Claude Code MCP configuration (~/.claude.json or via claude mcp add):
Replace <your-api-key> with the key from the previous step.
Add to your Codex CLI MCP configuration (~/.codex/config.json):
Replace <your-api-key> with the key from the previous step. Restart Codex CLI to pick up the change.
In Cursor, go to Settings > MCP Servers and add a remote server:
The MCP server is a remote HTTP endpoint. Point any MCP-compatible tool at:
The server exposes task, memory, project admin, sprint, and visualization tools. Discover them via the tools/list method.
Enable agent memory
Tokanban memory is opt-in. Use an agent key with memory:read and memory:write, then add the harness behavior block so the agent starts and ends sessions correctly.
Add the memory block to CLAUDE.md and keep the project/workdir roots together when both are known:
If your current agent key predates memory support, rotate or recreate it so the key includes memory:read and memory:write.
Add the memory block to AGENTS.md and keep the working directory stable so workdir memory stays useful across sessions:
Add the memory block to .cursorrules so Cursor sessions read and write Tokanban memory consistently:
Verify it works
Try creating your first task:
Pick a default project once, then task commands can omit --project.
Ask your agent:
The agent uses the MCP tools automatically. No special syntax needed.