
scrumboy
by markrai·★ 241·Score 49
Scrumboy is a self-hosted Kanban project management tool with MCP support for AI agents.
Overview
Scrumboy is a comprehensive project management solution that combines Kanban-style task organization with MCP integration for AI agents. It offers customizable workflows, real-time collaboration, and shareable boards. The MCP implementation allows AI agents to interact with Scrumboy through JSON-RPC endpoints, enabling tasks like creating todos, managing projects, and accessing project data programmatically. Built in Go, it provides both authentication and anonymous modes, making it suitable for both personal use and team collaboration.
Try asking AI
After installing, here are 3 things you can ask your AI assistant:
When to choose this
Choose Scrumboy if you need a self-hosted Kanban solution with AI agent integration that prioritizes privacy and customization without vendor lock-in.
When NOT to choose this
Avoid Scrumboy if you need a SaaS solution, extensive third-party integrations beyond its API/webhooks, or require features beyond Kanban methodology.
Tools this server exposes
12 tools extracted from the READMEtodos.createCreate a new todo item in a project
projects.listList all available projects
todo.assignAssign a todo item to a team member
webhooks.createCreate a new webhook for project events
todos.listList todos with filtering options
projects.createCreate a new project board
todo.updateUpdate an existing todo item
sprints.createCreate a new sprint for project planning
todo.transitionMove a todo between workflow lanes
webhooks.listList existing webhooks for a project
sprints.listList all sprints for a project
tokens.createCreate an API access token for integrations
Comparable tools
Installation
Install Scrumboy
- **Docker (Recommended)**
``bash docker compose up --build ``
- **From source**
``bash go run ./cmd/scrumboy ``
- **MCP Configuration for Claude Desktop**
Add to your Claude Desktop config.json: ``json { "mcpServers": { "scrumboy": { "command": "curl", "args": ["-X", "POST", "http://localhost:8080/mcp/rpc"], "env": { "SCRUMBOY_TOKEN": "your_token_here" } } } } ` Generate your token via: `bash curl -b cookies.txt -X POST http://localhost:8080/api/me/tokens \ -H "Content-Type: application/json" \ -H "X-Scrumboy: 1" \ -d '{"name":"cli"}' ``
Compare scrumboy with
Last updated · Auto-generated from public README + GitHub signals.