MCP Catalogs
Homescrumboy screenshot

scrumboy

by markrai·241·Score 49

Scrumboy is a self-hosted Kanban project management tool with MCP support for AI agents.

productivitydeveloper-toolsai-llm
17
Forks
5
Open issues
this month
Last commit
2d ago
Indexed

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:

you:AI agents creating and managing project tasks through MCP
you:Automated project status reporting for CI/CD pipelines
you:Voice-controlled task management via integrated voice commands

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 README
  • todos.create

    Create a new todo item in a project

  • projects.list

    List all available projects

  • todo.assign

    Assign a todo item to a team member

  • webhooks.create

    Create a new webhook for project events

  • todos.list

    List todos with filtering options

  • projects.create

    Create a new project board

  • todo.update

    Update an existing todo item

  • sprints.create

    Create a new sprint for project planning

  • todo.transition

    Move a todo between workflow lanes

  • webhooks.list

    List existing webhooks for a project

  • sprints.list

    List all sprints for a project

  • tokens.create

    Create an API access token for integrations

Comparable tools

wekantaigamboardleantime

Installation

Install Scrumboy

  1. **Docker (Recommended)**

``bash docker compose up --build ``

  1. **From source**

``bash go run ./cmd/scrumboy ``

  1. **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

GitHub →

Last updated · Auto-generated from public README + GitHub signals.