# Kanban

> Terminal based project management solution

- **Type:** MCP server
- **Install:** `agentstack add mcp-kanban-rs-kanban`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [kanban-rs](https://agentstack.voostack.com/s/kanban-rs)
- **Installs:** 0
- **Category:** [Integrations](https://agentstack.voostack.com/c/integrations)
- **Latest version:** 0.1.0
- **License:** Apache-2.0
- **Upstream author:** [kanban-rs](https://github.com/kanban-rs)
- **Source:** https://github.com/kanban-rs/kanban
- **Website:** https://kanban.rs

## Install

```sh
agentstack add mcp-kanban-rs-kanban
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# Kanban

[](https://github.com/fulsomenko/kanban/actions/workflows/ci.yml)
[](https://crates.io/crates/kanban-cli)
[](https://aur.archlinux.org/packages/kanban)
[](https://search.nixos.org/packages?show=kanban&channel=26.05)
[](https://search.nixos.org/packages?show=kanban&channel=unstable)
[](https://github.com/fulsomenko/homebrew-tap)
[](https://community.chocolatey.org/packages/kanban)
[](LICENSE.md)

**Keyboard-first project management for the terminal.**

*Inspired by [lazygit](https://github.com/jesseduffield/lazygit) · Built on [ratatui](https://ratatui.rs)*

---

## Why Kanban?

- **Zero latency** — pure keyboard flow — hjkl, never reach for the mouse
- **Your data is a file on your disk** — private, offline, always yours
- **Git-native** — generate branch names and `git checkout` commands from any card
- **LLM-native** — full MCP server (47 tools) works with Claude Code, Cursor, and any MCP client
- **Offline-first** — works anywhere; JSON and SQLite backends, atomic writes, live conflict detection

---

## Quick Start

### TUI

```bash
kanban                  # launch in-memory; pick or skip a file from the startup dialog
kanban boards.json      # open or create a JSON board file
kanban boards.sqlite    # open or create a SQLite board file
```

Press `?` at any time to see context-sensitive help.

### CLI

```bash
export KANBAN_FILE=boards.json   # or pass the path as the first argument

kanban board create --name "My Project"
kanban board list
kanban card create --board "My Project" --column TODO --title "Fix the bug" --priority high
kanban card list --board "My Project"
kanban sprint create --board "My Project"
kanban sprint activate yarara-release --duration-days 14
kanban card assign-sprint KAN-5 --sprint yarara-release
kanban relation add --parent KAN-5 --child KAN-7   # KAN-7 is now a subtask of KAN-5
kanban relation children KAN-5                     # list direct children of KAN-5
```

### Init (non-interactive setup)

```bash
kanban init boards.json --board "My Project"  # create file + first board, exit
kanban init --board "My Project"              # uses KANBAN_FILE or boards.json
kanban init                                   # creates the file with no entities
```

Every entity argument accepts either a UUID or a human-readable name (sprint
numbers also work for sprints; cards accept their `KAN-N` identifier). When a
name doesn't match, the error lists what's available.

All commands output JSON. Use `kanban --help` for full reference.

### MCP Server

**Claude Code**

```json
{
  "mcpServers": {
    "kanban": {
      "command": "kanban-mcp",
      "args": ["boards.json"]
    }
  }
}
```

---

## Installation

### From crates.io
```bash
cargo install kanban-cli
```

### From source
```bash
git clone https://github.com/fulsomenko/kanban
cd kanban
cargo install --path crates/kanban-cli
```

### Homebrew
```bash
brew install fulsomenko/tap/kanban
```

### Using Nix
```bash
nix run github:fulsomenko/kanban
```

### Arch Linux (AUR)
```bash
yay -S kanban
```

### Chocolatey
```powershell
choco install kanban
```

### winget
```powershell
winget install fulsomenko.kanban
```

### Linux Clipboard Support

For `y`/`Y` clipboard operations to persist after the app exits, you need a clipboard manager:

- **Wayland**: `wl-clip-persist`, `cliphist`, `clipman`, or your DE's built-in manager
- **X11**: Most desktop environments include one by default

### Windows and WSL

If your setup is Windows and WSL, and you often switch between them, then it is recommended to install separate binaries for each system to avoid constant recompiles.

---

## EDITOR configuration

Changes are made in an external editor as defined by your `EDITOR`. Neovim, nano, or some other terminal-based editor is recommended, both for easier switching between edits and browsing, and because editors that leave the terminal may cause issues.

VS Code is known not to work in the current implementation.

`kanban` is well-tested on supported OSes and is designed to be shell-agnostic. If your `EDITOR` is not set, it will default to `notepad` on Windows and `vi` otherwise.

---

## Features

### Boards & Cards
- Multiple boards, each with custom columns and WIP limits
- Rich cards: title, description, priority (Low/Medium/High/Critical), status (Todo/InProgress/Blocked/Done), story points, due dates
- Card numbering with configurable prefix (e.g. `KAN-42`)
- Card relations: parent/child (Spawns), blocking (with severity), and undirected relates (with sub-kind) — each with cycle / self-reference detection and dedicated `kanban relation` CLI + MCP tools
- Archive and restore cards
- Configurable completion columns per board: `board update  --completion-columns Done,Decision` — status=done files cards under the first entry; `''` disables the status/column sync
- Archive and restore whole boards: `board archive` / `board restore` / `board delete-archived`, an archived-boards TUI view you can drill into like a live board, `board list --archived` / `--include-archived`, a three-state MCP `archived` filter (`exclude` / `only` / `include`), and matching MCP archive/restore/delete-archived tools

### Sprint Planning
- Full sprint lifecycle: Planning → Active → Completed / Cancelled
- Carry uncompleted cards to the next sprint with one key
- Per-sprint card prefix overrides
- Sprint logs track assignment history per card

### Views & Navigation
- **3 view modes**: Flat list / Grouped by column / Kanban board — toggle with `V`
- Real-time `/` search
- Sort cards by priority, points, status, or position
- Sort the board list by position, name, creation time, or archival recency: `board list --sort  --order `, a persisted default via `board set-sort`, and a TUI field picker (`o`) / order toggle (`s`) for both live and archived boards
- Filter by sprint, status, or search result
- Multi-select for bulk archive / move / sprint-assign

### Productivity
- Undo/redo (`u`/`U`)
- External editor for descriptions (respects `$EDITOR`)
- Clipboard: `y` copies git branch name, `Y` copies `git checkout` command
- Import/export boards as JSON

### Storage & Sync
- JSON and SQLite storage backends
- Atomic writes (temp file → rename) prevent corruption
- Live file watching: auto-reload when another instance writes
- Conflict detection with user prompt when local edits clash

### Interfaces
- **TUI** — full keyboard-driven terminal UI
- **CLI** — scriptable; all operations, JSON output, pagination
- **MCP server** — 47 tools for LLM integration

---

## Key Bindings

Press `?` in the app to see bindings for the current context.

### Boards Panel

| Key | Action |
|-----|--------|
| `j`/`↓` | Navigate down |
| `k`/`↑` | Navigate up |
| `gg` | Jump to top |
| `G` | Jump to bottom |
| `Enter`/`Space` | Open board detail |
| `n` | New board |
| `r` | Rename board |
| `e` | Edit board |
| `d` | Delete board |
| `x` | Export board |
| `X` | Export all boards |
| `i` | Import board from file |
| `u` | Undo |
| `U` | Redo |
| `S` | Open settings |
| `1`/`2` | Focus boards/cards panel |
| `q` | Quit |
| `?` | Help |

### Cards Panel

| Key | Action |
|-----|--------|
| `j`/`↓`, `k`/`↑` | Navigate down/up |
| `gg` / `G` | Jump to top/bottom |
| `{` / `}` | Half-page up/down |
| `h`/`l` | Previous/next column |
| `H`/`L` | Move card left/right column |
| `Enter`/`Space` | Open card detail |
| `n` | New card |
| `e` | Edit card |
| `c` | Toggle done |
| `p` | Set priority |
| `d` | Archive card(s) |
| `D` | View archived cards |
| `v` | Toggle card selection |
| `Ctrl+a` | Select all visible cards |
| `Esc` | Clear selection |
| `P` | Set priority (bulk) |
| `a` | Assign to sprint |
| `o` | Sort cards |
| `O` | Toggle sort order |
| `t` | Toggle sprint filter |
| `T` | Filter options |
| `/` | Search |
| `s` | Manage child cards |
| `V` | Toggle view mode |
| `u` / `U` | Undo / Redo |
| `1`/`2` | Focus boards/cards panel |
| `q` | Quit |
| `?` | Help |

### Card Detail View

| Key | Action |
|-----|--------|
| `1`–`5` | Focus Title / Metadata / Description / Parents / Children panel |
| `e` | Edit current panel |
| `r` | Manage parent cards |
| `R` | Manage child cards |
| `y` | Copy git branch name to clipboard |
| `Y` | Copy `git checkout` command to clipboard |
| `a` | Assign to sprint |
| `d` | Delete card |
| `u` / `U` | Undo / Redo |
| `Esc` | Back |
| `?` | Help |

### Board Detail View

| Key | Action |
|-----|--------|
| `1`–`5` | Focus Name / Description / Settings / Sprints / Columns panel |
| `e` | Edit current panel |
| `p` | Set branch prefix |
| `n` | New sprint (Sprints panel) / New column (Columns panel) |
| `r` | Rename column (Columns panel) |
| `d` | Delete column (Columns panel) |
| `J`/`K` | Reorder column up/down (Columns panel) |
| `j`/`k` | Navigate within panel |
| `Enter`/`Space` | Open sprint detail (Sprints panel) |
| `u` / `U` | Undo / Redo |
| `Esc` | Back |
| `?` | Help |

### Sprint Detail View

| Key | Action |
|-----|--------|
| `h`/`l` | Switch between uncompleted/completed panels |
| `j`/`k` | Navigate cards |
| `a` | Activate sprint |
| `c` | Complete sprint |
| `p` | Set sprint prefix |
| `C` | Set card prefix override |
| `o`/`O` | Sort / Toggle sort order |
| `v` | Select card(s) |
| `u` / `U` | Undo / Redo |
| `Esc` | Back |
| `?` | Help |

### Archived Cards View

| Key | Action |
|-----|--------|
| `j`/`k` | Navigate |
| `gg`/`G` | Jump to top/bottom |
| `{`/`}` | Half-page up/down |
| `r` | Restore card(s) |
| `x` | Delete card(s) permanently |
| `v` | Select for bulk operation |
| `V` | Toggle view mode |
| `u` / `U` | Undo / Redo |
| `Esc` | Back |

---

## Architecture

**How it fits, in 30 seconds:** `kanban-domain` holds all business rules with
zero I/O. `kanban-persistence` and `kanban-backend` are two stacked plugin
points — one for storage *format* (JSON/SQLite), one for storage *backend*
(in-memory/JSON/SQLite/HTTP) — each with a factory trait a new implementation
registers against. `kanban-service` is the single seam every frontend
(`kanban-cli`, `kanban-tui`, `kanban-mcp`, `kanban-server`) goes through to
reach a backend; each frontend picks which concrete backends to compile in
and registers them itself at startup. The detailed graph below shows exactly
which crate depends on which.

The workspace is layered so that every dependency points inward, toward pure
domain logic, and outward-facing concerns (storage format, transport, UI) stay
swappable:

```
crates/
├── kanban-core               → Shared types, error handling, config, reusable state primitives
├── kanban-domain             → Domain models, business logic, filtering & sorting
├── kanban-api                → Wire-format DTOs shared by kanban-server and HTTP backend clients
├── kanban-persistence        → Persistence trait layer — pure trait definitions, all I/O lives in backend crates
├── kanban-backend            → KanbanBackend / KanbanBackendFactory abstractions over a pluggable backend
├── kanban-backend-memory     → In-memory KanbanBackend (ephemeral, no persistence)
├── kanban-backend-http       → KanbanBackend implementation talking to a remote kanban-server
├── kanban-persistence-json   → JSON file storage backend (implements kanban-persistence + kanban-backend)
├── kanban-persistence-sqlite → SQLite storage backend (implements kanban-persistence + kanban-backend)
├── kanban-service            → KanbanContext, persistence orchestration, undo/redo
├── kanban-view               → Renderer-agnostic view-model layer shared by kanban-tui and kanban-web
├── kanban-tui                → Terminal UI with ratatui
├── kanban-cli                → CLI entry point (clap)
├── kanban-mcp                → Model Context Protocol server
└── kanban-server             → HTTP API server (axum)
```

**Pluggable backends, registered by the app, not the service layer** (KAN-1027):
`kanban-persistence` defines `StoreFactory` / `StoreRegistry` for the storage
format layer, and `kanban-backend` defines the equivalent `KanbanBackendFactory`
/ `KanbanBackendRegistry` one layer up, dispatching to the right backend by
content-sniffing a locator (`KanbanBackendRegistry::for_locator`) or by explicit
name (`for_name`). `kanban-service` depends only on the `kanban-backend`
abstraction — it has no production dependency on any concrete backend crate.
Each application (`kanban-cli`, `kanban-mcp`, `kanban-tui`, `kanban-server`)
builds its own registry and registers the concrete backends (JSON, SQLite,
in-memory, HTTP) it wants to ship with. This is the payoff of the KAN-1027
refactor: adding a new storage backend no longer means touching
`kanban-service`.

### Workspace dependency graph

Solid arrows are normal (`[dependencies]`) edges. Dotted arrows are
optional/feature-gated edges (the dependency only activates when the named
Cargo feature is enabled — most are on by default). Dev-only edges (test
fixtures) are omitted here; see the note below.

```mermaid
graph TD
    subgraph "Foundation"
        CORE[kanban-core]
        DOM[kanban-domain]
    end
    subgraph "Domain-adjacent traits"
        API[kanban-api]
        PER[kanban-persistence]
    end
    subgraph "Backend abstraction"
        BE[kanban-backend]
        BEMEM[kanban-backend-memory]
        BEHTTP[kanban-backend-http]
    end
    subgraph "Concrete storage backends"
        JSON[kanban-persistence-json]
        SQL[kanban-persistence-sqlite]
    end
    subgraph "Service"
        SVC[kanban-service]
    end
    subgraph "View layer"
        VIEW[kanban-view]
    end
    subgraph "Applications"
        CLI[kanban-cli]
        MCP[kanban-mcp]
        TUI[kanban-tui]
        SRV[kanban-server]
    end

    DOM --> CORE
    API --> CORE
    API --> DOM
    PER --> CORE
    PER --> DOM

    BE --> CORE
    BE --> DOM
    BE --> PER
    BEMEM --> DOM
    BEMEM --> BE
    BEHTTP --> CORE
    BEHTTP --> DOM
    BEHTTP --> BE
    BEHTTP --> API

    JSON --> CORE
    JSON --> DOM
    JSON --> PER
    JSON --> BE
    JSON --> BEMEM
    SQL --> CORE
    SQL --> DOM
    SQL --> PER
    SQL --> BE
    SQL --> BEMEM

    SVC --> CORE
    SVC --> DOM
    SVC --> PER
    SVC --> API
    SVC --> BE
    SVC -.->|feature: sqlite, default-on| SQL

    VIEW --> CORE
    VIEW --> DOM

    CLI --> CORE
    CLI --> DOM
    CLI --> PER
    CLI --> BE
    CLI --> SVC
    CLI -.->|feature: json, default-on| JSON
    CLI -.->|feature: sqlite, default-on| SQL
    CLI -.->|feature: tui, default-on| TUI

    MCP --> CORE
    MCP --> DOM
    MCP --> PER
    MCP --> BE
    MCP --> SVC
    MCP -.->|feature: json, default-on| JSON
    MCP -.->|feature: sqlite, default-on| SQL

    TUI --> CORE
    TUI --> DOM
    TUI --> PER
    TUI --> BE
    TUI --> BEMEM
    TUI --> JSON
    TUI --> SQL
    TUI --> SVC
    TUI --> VIEW

    SRV --> CORE
    SRV --> DOM
    SRV --> PER
    SRV --> BE
    SRV --> JSON
    SRV --> SQL
    SRV --> SVC
    SRV -.->|feature: test-helpers| BEMEM
```

**Not shown above (test-only, dev-dependencies):** `kanban-persistence-json`
and `kanban-persistence-sqlite` each dev-depend on `kanban-service` (feature
`test-helpers`) to run the shared service-layer contract tests against their
backend, and `kanban-service` dev-depends back on both of them — a
dev-dependency-only cycle that Cargo permits but a production dependency graph
never would. Similarly `kanban-domain` and `kanban-persistence` dev-depend on
`kanban-backend-memory` for lightweight in-memory test fixtures, and
`kanban-backend-http` dev-depends on `kanban-server` (feature `test-helpers`)
for integration tests against a real server. None of these are reachable from
a release build — `cargo build --release` never touches them.

The key structural change from before KAN-1027: `kanban-service` used to
depend directly on `kanban-persistence-json` (behind a `json` feature) and on
`kanban-backend-memory`. Both are gone from its production dependency graph;
it depends only on the `kanban-backend`/`kanban-persistence` abstractions, and
the four application crates now

…

## Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [kanban-rs](https://github.com/kanban-rs)
- **Source:** [kanban-rs/kanban](https://github.com/kanban-rs/kanban)
- **License:** Apache-2.0
- **Homepage:** https://kanban.rs

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/mcp-kanban-rs-kanban
- Seller: https://agentstack.voostack.com/s/kanban-rs
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
