# KanbanThing (remote · www.kanbanthing.com)

Create and drive KanbanThing kanban boards. No account, no API key, board link required.

- Trust score: 64/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `www.kanbanthing.com`: 64/100 (this document), [markdown](https://verifymcp.io/servers/com-kanbanthing-kanban/www.md), [page](https://verifymcp.io/servers/com-kanbanthing-kanban/www)

## Channel facts

- Endpoint: `https://www.kanbanthing.com/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `0.1.0`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Endpoint Security**: 63/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation check failed: no authorisation is required to call this server, and it exposes a tool marked destructive (delete_card).
  - HTTPS is enforced; there's no plaintext access path.
  - The HSTS (Strict-Transport-Security) header is present.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 71/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 855 tokens (~106/item across 8 items; 8 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 97/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 91% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

**Unverified: 1 category.** A category scored 0 because we could not verify it: authentication we do not have, an unreachable endpoint, or not enough scan history. We only credit what we can confirm.

## Install

### Claude

```bash
claude mcp add --transport http com-kanbanthing-kanban https://www.kanbanthing.com/mcp
```

### Codex

```toml
[mcp_servers.com-kanbanthing-kanban]
url = "https://www.kanbanthing.com/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "com-kanbanthing-kanban": {
      "type": "remote",
      "url": "https://www.kanbanthing.com/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add com-kanbanthing-kanban --url https://www.kanbanthing.com/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  com-kanbanthing-kanban:
    url: "https://www.kanbanthing.com/mcp"
```

### Other

```json
{
  "mcpServers": {
    "com-kanbanthing-kanban": {
      "type": "http",
      "url": "https://www.kanbanthing.com/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 64)

First indexed and scored.

## MCP tools (8)

### `create_board` (~148 tokens)

Create a Kanban board

Create a new KanbanThing board and return its id, shareable URL and password. No sign-up. Every board is password protected: pass `password` to choose one, otherwise a random password is generated and returned. Give both the URL and the password to whoever should use the board. Boards are deleted when they expire.

Input parameters:

- `columns` (array): Columns left to right after Backlog. Defaults to To Do, In Progress, Done.
- `lifespan_days` (integer): Days until the board is deleted. Defaults to 60.
- `name` (string, required): Board name shown to everyone.
- `password` (string): Board password. A random one is generated and returned if omitted.

### `get_board` (~67 tokens)

Get a board

Read a board by id: its name, expiry, columns and how many cards each column holds.

Input parameters:

- `board_id` (string, required): The board UUID, or the board URL the user shared. Never invent one.
- `password` (string): The board password, if the board is protected.

### `list_columns` (~62 tokens)

List columns

List the columns on a board, left to right, with their ids.

Input parameters:

- `board_id` (string, required): The board UUID, or the board URL the user shared. Never invent one.
- `password` (string): The board password, if the board is protected.

### `list_cards` (~94 tokens)

List cards

List the cards on a board, optionally only those in one column.

Input parameters:

- `board_id` (string, required): The board UUID, or the board URL the user shared. Never invent one.
- `column` (string): Column name or id. Omit for every column.
- `limit` (integer): Maximum cards to return. Defaults to 100.
- `password` (string): The board password, if the board is protected.

### `create_card` (~127 tokens)

Create a card

Add a card to a column on a board. Lands in Backlog when no column is given.

Input parameters:

- `board_id` (string, required): The board UUID, or the board URL the user shared. Never invent one.
- `color` (string): Card colour as #rrggbb.
- `column` (string): Column name or id. Defaults to Backlog.
- `description` (string)
- `due_date` (string): Due day as YYYY-MM-DD.
- `password` (string): The board password, if the board is protected.
- `title` (string, required): Card title.

### `move_card` (~90 tokens)

Move a card

Move a card to another column on the same board, at the end of that column.

Input parameters:

- `board_id` (string, required): The board UUID, or the board URL the user shared. Never invent one.
- `card_id` (string, required): Card id from list_cards.
- `column` (string, required): Destination column name or id.
- `password` (string): The board password, if the board is protected.

### `update_card` (~128 tokens)

Update a card

Change a card title, description, due date or colour. Pass null to clear a field. Use move_card to change column.

Input parameters:

- `board_id` (string, required): The board UUID, or the board URL the user shared. Never invent one.
- `card_id` (string, required): Card id from list_cards.
- `color`: Card colour as #rrggbb, or null.
- `description`
- `due_date`: Due day as YYYY-MM-DD, or null.
- `password` (string): The board password, if the board is protected.
- `title` (string)

### `delete_card` (~74 tokens)

Delete a card

Permanently delete a card from a board. This cannot be undone.

Input parameters:

- `board_id` (string, required): The board UUID, or the board URL the user shared. Never invent one.
- `card_id` (string, required): Card id from list_cards.
- `password` (string): The board password, if the board is protected.

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/com-kanbanthing-kanban/www#diagnostics

## Score history

- 2026-08-03: 64

## Links

- Remote endpoint: https://www.kanbanthing.com/mcp
- Repository: https://github.com/tronschell/kanban-thing
- Website: https://www.kanbanthing.com/cli
- Changelog RSS feed: https://verifymcp.io/servers/com-kanbanthing-kanban/www/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/com-kanbanthing-kanban/www/changelog.json
- HTML version of this page: https://verifymcp.io/servers/com-kanbanthing-kanban/www
