npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

kanbrawl

v1.0.0

Published

A minimal live kanban board for AI agents, powered by MCP

Readme

🥊 Kanbrawl

A minimal live kanban board built for AI agents

Build TypeScript Node License

Features · Getting Started · CLI · Configuration · MCP Tools · Architecture · Development


AI agents manage tasks on a kanban board through MCP tools. Humans follow along in a live web UI that updates in real-time via Server-Sent Events. Both agents and humans can create, edit, move, and delete tasks — all changes sync instantly.

Features

  • 🤖 MCP Server — Exposes kanban operations as MCP tools via HTTP or stdio
  • 🖥️ Live Web UI — View updates in real-time and edit/update tasks with drag-and-drop
  • ⌨️ CLI — Easy setup to configure your AI tools, create and update tasks from the terminal
  • 📄 Single JSON file — All board config and task data lives in kanbrawl.json
  • 🔧 Customizable — Configure columns to fit your workflow
  • 📦 Zero infrastructure — No database, no external services

Getting Started

Prerequisites

Quick Start

Run the interactive setup in your project directory:

npx kanbrawl init

This will:

  1. Let you select your AI tools (VS Code Copilot, Claude Code, Cursor, Gemini CLI, Windsurf)
  2. Generate the appropriate MCP config files using stdio transport
  3. Create a kanbrawl.json board file with default columns
  4. Append a Kanbrawl usage section to AGENTS.md

That's it — your AI agent can now use MCP tools to manage tasks on the board.

View the Board

To launch the web UI and HTTP MCP server:

npx kanbrawl start

Open http://localhost:3000 to view the board.

Manual MCP Configuration

If you prefer to configure your MCP client manually instead of using kanbrawl init:

Stdio transport (recommended):

{
  "mcpServers": {
    "kanbrawl": {
      "command": "npx",
      "args": ["-y", "kanbrawl", "start", "--stdio"]
    }
  }
}

HTTP transport (requires a running server):

{
  "mcpServers": {
    "kanbrawl": {
      "type": "http",
      "url": "http://localhost:3000/mcp"
    }
  }
}

CLI

The kanbrawl CLI (also aliased as kb) provides the following commands:

kanbrawl                    # Start HTTP server (default)
kanbrawl start              # Start HTTP server
kanbrawl start --stdio      # Start MCP server over stdio transport
kanbrawl task "title"       # Create a task
kanbrawl task "title" -u    # Update existing task by title match
kanbrawl init               # Interactive setup for AI tools
kanbrawl --version          # Show version
kanbrawl --help             # Show help

task command

Create or update tasks directly from the terminal:

kanbrawl task "Fix login bug" -p 0 -a alice -c "In progress"
kanbrawl task "Fix login bug" -u -c "Done"

| Option | Description | |--------|-------------| | -d, --description <text> | Task description | | -c, --column <name> | Target column | | -p, --priority <level> | Priority (0, 1, or 2; default 1) | | -a, --assignee <name> | Task assignee | | -u, --update | Update existing task by title match |

init command

Interactive setup that:

  1. Prompts to select AI tools (VS Code Copilot, Claude Code, Cursor, Gemini CLI, Windsurf)
  2. Generates MCP config files with stdio transport for each selected tool
  3. Creates kanbrawl.json with default columns if missing
  4. Appends a Kanbrawl usage section to AGENTS.md

Configuration

All configuration and data is stored in kanbrawl.json, auto-created on first run:

{
  "columns": ["Todo", "In progress", "Blocked", "Done"],
  "theme": "dark",
  "tasks": []
}

| Field | Type | Default | Description | |-------|------|---------|-------------| | columns | string[] | ["Todo", "In progress", "Blocked", "Done"] | Column names and order | | theme | "light" | "dark" | System preference | UI theme override | | tasks | Task[] | [] | Task objects (managed by the app) |

[!TIP] Edit the columns array to customize your board layout. Changes take effect on restart.

MCP Tools

All tools are available via the /mcp endpoint.

| Tool | Description | Read-only | |------|-------------|-----------| | get_columns | Get columns with task counts | ✅ | | list_tasks | List tasks, filtered by column (default: first) and priority | ✅ | | create_task | Create a new task (with priority, assignee) | ❌ | | move_task | Move a task to a different column | ❌ | | update_task | Update task fields (title, description, priority, assignee) | ❌ | | delete_task | Delete a task | ❌ |

Architecture

graph LR
  subgraph Clients
    A["🤖 AI Agents"]
    B["🖥️ Web Browser"]
  end

  subgraph Server ["Express 5 Server"]
    MCP["MCP Endpoint<br/><code>/mcp</code>"]
    API["REST API<br/><code>/api/*</code>"]
    SSE["SSE Endpoint<br/><code>/events</code>"]
    Store["BoardStore"]
  end

  DB[("kanbrawl.json")]

  A -- "MCP tools<br/>(Streamable HTTP)" --> MCP
  B -- "REST calls" --> API
  B -. "real-time events" .-o SSE

  MCP --> Store
  API --> Store
  Store -- "read/write" --> DB
  Store -- "emit events" --> SSE

How it works:

  1. AI agents call MCP tools (e.g. create_task) via the /mcp Streamable HTTP endpoint
  2. Humans interact through the web UI, which calls the REST API at /api/*
  3. All mutations flow through the BoardStore, which persists data to kanbrawl.json and emits change events
  4. The SSE manager broadcasts events to all connected browser clients for real-time updates

Development

Dev Mode

Runs the Express server with auto-reload and Vite dev server with HMR:

npm run dev

| Service | URL | Description | |---------|-----|-------------| | Server | localhost:3000 | API, MCP, SSE | | Client | localhost:5173 | Vite dev with proxy |

Build

npm run build          # Build both server and client
npm run build:server   # Build server only (tsc)
npm run build:client   # Build client only (vite)
npm run clean          # Remove dist/