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

kanbango

v2.1.0

Published

JSON-first local Kanban board with web GUI, CLI, and MCP server

Readme

kanbango

JSON-first local Kanban board for developers and AI agents — CLI, web GUI, and MCP server in one lightweight package.

Installation

Global (recommended for CLI)

npm install -g kanbango

Local per project (recommended for MCP)

npm install -D kanbango

No install

npx kanbango --help

Quick Start

# Initialize backlog directories
kanban init

# Start web GUI at http://localhost:5500
kanban serve

# List all tasks
kanban list --json

# Add a task
kanban add "My task" --col planned --epic "Phase 1"

# Show details
kanban show PI-001

# Move between columns (active | planned | icebox | done)
kanban move PI-001 active

# Toggle subtask completion
kanban toggle PI-001 0

Columns

| Column | Purpose | |--------|---------| | active | In progress (keep to 1–2 tasks) | | planned | Ready to implement | | icebox | Nice-to-have / frozen | | done | Completed |

Data Structure

Tasks are JSON files in backlog/<column>/:

{
  "id": "PI-001-my-feature",
  "title": "My Feature",
  "column": "planned",
  "epic_group": "Phase 1",
  "created": "2026-07-08",
  "description": "High-level context.",
  "specs": "Technical details.",
  "acceptance_criteria": ["Works as expected"],
  "subtasks": [
    { "id": "st-1", "text": "First step", "done": false }
  ]
}

MCP Server (for Claude Code, OpenCode, Cursor)

Run the MCP server to let AI agents read / create / update your board:

npx kanbango mcp

Give it to your agent

Add this to your MCP client config (.mcp.json, opencode.json, or Claude Desktop config):

{
  "mcpServers": {
    "kanbango": {
      "command": "npx",
      "args": ["kanbango", "mcp"]
    }
  }
}

Or generate the config files automatically:

npx kanbango mcp-init

What the agent can do

Once connected, your agent gets access to these tools:

| Tool | What it does | |------|-------------| | kanban_read | List tasks, filter by column/epic, show details | | kanban_create | Add new tasks | | kanban_update | Move, edit, toggle subtasks | | kanban_gui_start | Start web GUI from the agent | | kanban_gui_stop | Stop web GUI | | kanban_gui_status | Check if GUI is running |

Your agent stays in sync with your real board — every change is persisted as JSON files.

CLI Reference

| Command | Description | |---------|-------------| | kanban init | Create backlog directory structure | | kanban serve [PORT] | Start web GUI (default 5500) | | kanban list [--col <col>] [--json] | List tasks | | kanban show <ID> | Show task details | | kanban add <TITLE> | Add a new task | | kanban move <ID> <COL> | Move task | | kanban toggle <ID> <IDX> | Toggle subtask | | kanban mcp-init | Generate MCP config files |

Web GUI

kanban serve
  • Swimlanes grouped by epic
  • Drag-and-drop between columns
  • Inline editing and subtask checkboxes

Using as a Node.js module

const kanban = require('kanbango');
const tasks = await kanban.allEpics();

Requirements

Node.js 16+

License

MIT