A Model Context Protocol (MCP) server for KanbanFlow - manage your boards, tasks, and workflows directly from Cursor/Claude.
# Install globally
npm install -g kanbanflow-mcp-server
# Auto-magic setup in ANY project
cd your-project-folder
kanbanflow-mcp-server --setupThat's it! ✨ The setup wizard will:
- 🔍 Detect your installation automatically
- 🛡️ Preserve any existing MCP servers you have
- 💾 Create backups of your configuration
- ⚙️ Generate the perfect config with full paths
- 🎯 Add KanbanFlow to your Cursor setup
# Clone and build from source
git clone https://github.com/williamavholmberg/kanbanflow-mcp-server
cd kanbanflow-mcp-server
npm install && npm run build
# Same magic setup wizard works here too!
kanbanflow-mcp-server --setup- Go to kanbanflow.com/api
- Create your API token
- Enter it when prompted by the setup wizard
The setup wizard is bulletproof:
- ✅ Never overwrites your existing MCP servers
- ✅ Creates automatic backups before any changes
- ✅ Merges intelligently with your current setup
- ✅ Uses reliable paths (no binary issues)
- ✅ Works everywhere (macOS, Windows, Linux)
New project?
📝 Creating new MCP configuration file...
✅ Setup complete!Already have MCP servers?
📋 Found existing MCP configuration with 2 server(s)
➕ Adding kanban-flow to existing configuration...
💾 Created backup: mcp.json.backup.1692123456789
✅ Setup complete!
💡 Your existing MCP servers are preserved!Updating KanbanFlow config?
📋 Found existing MCP configuration with 3 server(s)
🔄 Updating existing kanban-flow configuration...
💾 Created backup: mcp.json.backup.1692123456789
✅ Setup complete!get-board- Get your board structure and column IDsget-all-tasks- See all tasks across all columns
create-task- Create new tasksget-tasks- Get tasks from a specific columnget-task-details- Get detailed task informationupdate-task- Update task properties (name, column, color, etc.)
add-subtask- Add a subtask to any taskupdate-subtask-by-position- Update subtasks by positionadd-subtasks- Add multiple subtasks at oncecreate-task-with-subtasks- Create task + subtasks in one go
add-label- Add labels to tasksupdate-label- Update existing labelsset-task-due-date- Set due datesupdate-custom-field- Update custom field values
add-comment- Add comments to tasksupdate-comment- Update existing comments
Ask Claude things like:
- "Show me my board structure"
- "Create a task called 'Fix bug' in the To-Do column"
- "Add subtasks to task T123: Write tests, Review code, Deploy"
- "Move task T456 to Done column"
- "What tasks are in my In Progress column?"
- "Create a task with 3 subtasks for implementing user authentication"
If you prefer manual setup, the wizard generates this format:
{
"mcpServers": {
"kanban-flow": {
"command": "node",
"args": ["/path/to/kanbanflow-mcp-server/build/index.js"],
"env": {
"KANBAN_API_TOKEN": "your_api_token_here"
}
}
}
}# Build
npm run build
# Help
kanbanflow-mcp-server --help
# Test (requires KANBAN_API_TOKEN env var)
npm run dev- 🪄 One-command setup - No manual config editing
- 🛡️ Bulletproof safety - Never breaks your existing setup
- 🎯 Smart detection - Works with any installation method
- 🔄 Re-runnable - Update your config anytime safely
- 📱 Cross-platform - macOS, Windows, Linux
- 🚀 Industry-leading UX - The way MCP setup should work
MIT License - see LICENSE file.
- Fork the repo
- Create your feature branch
- Make your changes
- Test with your KanbanFlow board
- Submit a pull request
Need help? Open an issue!
💡 Pro tip: Run
kanbanflow-mcp-server --setupanytime to update your configuration safely!