# io.github.gogogadgetbytes/planka (npm · @gogogadgetbytes/planka-mcp)

MCP server for PLANKA kanban boards. Full CRUD for cards, tasks, comments, and labels.

- Trust score: 69/100 (medium)
- Change this week: +23
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `@gogogadgetbytes/planka-mcp`: 69/100 (this document), [markdown](https://verifymcp.io/servers/gogogadgetbytes-planka/gogogadgetbytes-planka-mcp.md), [page](https://verifymcp.io/servers/gogogadgetbytes-planka/gogogadgetbytes-planka-mcp)

## Channel facts

- Registry: `npm`
- Package: `@gogogadgetbytes/planka-mcp`
- Version: `1.0.0`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, 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.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 180 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 74/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 987 tokens (~65/item across 15 items; 15 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add gogogadgetbytes-planka -- npx -y @gogogadgetbytes/planka-mcp
```

### Codex

```bash
codex mcp add gogogadgetbytes-planka -- npx -y @gogogadgetbytes/planka-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "gogogadgetbytes-planka": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@gogogadgetbytes/planka-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add gogogadgetbytes-planka --command npx --arg -y --arg @gogogadgetbytes/planka-mcp
```

### Hermes

```yaml
mcp_servers:
  gogogadgetbytes-planka:
    command: "npx"
    args: ["-y", "@gogogadgetbytes/planka-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "gogogadgetbytes-planka": {
      "command": "npx",
      "args": [
        "-y",
        "@gogogadgetbytes/planka-mcp"
      ]
    }
  }
}
```

## 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 69, +1)

No change was recorded against any check on this day. Stability & Change Management went from 23 to 27. That category is still filling its 30-day observation window: 7 days of observed history at the previous scan, 8 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-02 (score 68, +62)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [functional regression] Dependency health: partial → unverified
- [functional improvement] License: unverified → pass
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Schema quality: unverified → good
- [functional improvement] Stability: unverified → 0.23
- [functional improvement] Tool coverage: unverified → 100
- [functional improvement] MCP protocol: unverified → pass
- [functional] Licence: MIT

### 2026-08-01 (score 6, −15)

- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] Dependency health: unverified → partial
- [functional] First check of Schema quality: unverified

### 2026-07-31 (score 21, −25)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-27 (score 46)

First indexed and scored.

## MCP tools (15)

### `planka_get_structure` (~50 tokens)

Get the full project/board/list structure. Use this to understand what projects and boards exist before working with cards.

Input parameters:

- `projectId` (string): Optional: Get structure for a specific project only

### `planka_get_board` (~59 tokens)

Get a board with all its lists, cards, and labels. Use this to see everything on a board.

Input parameters:

- `boardId` (string, required): The board ID
- `includeTaskCounts` (boolean): Include task completion counts for each card

### `planka_create_card` (~111 tokens)

Create a new card on a board. Optionally add tasks (checklist items) at the same time.

Input parameters:

- `description` (string): Card description (markdown supported)
- `dueDate` (string): Due date in ISO format
- `labelIds` (array): Optional: Label IDs to attach
- `listId` (string, required): The list to create the card in
- `name` (string, required): Card title
- `tasks` (array): Optional: Task names to add as a checklist

### `planka_get_card` (~37 tokens)

Get full details of a card including tasks, comments, labels, and attachments.

Input parameters:

- `cardId` (string, required): The card ID

### `planka_update_card` (~91 tokens)

Update a card's properties (name, description, due date, completion status).

Input parameters:

- `cardId` (string, required): The card ID
- `description` (string|null): New description (null to clear)
- `dueDate` (string|null): New due date (null to clear)
- `isCompleted` (boolean): Mark card as complete/incomplete
- `name` (string): New card title

### `planka_move_card` (~81 tokens)

Move a card to a different list or position. Use this for workflow transitions (e.g., 'To Do' -> 'In Progress').

Input parameters:

- `cardId` (string, required): The card ID
- `listId` (string, required): Target list ID
- `position` (number): Position in the list (lower = higher). Default: end of list

### `planka_delete_card` (~34 tokens)

Permanently delete a card. This cannot be undone.

Input parameters:

- `cardId` (string, required): The card ID to delete

### `planka_create_tasks` (~46 tokens)

Add one or more tasks (checklist items) to a card.

Input parameters:

- `cardId` (string, required): The card ID
- `tasks` (array, required): Task names to create

### `planka_update_task` (~53 tokens)

Update a task's name or completion status.

Input parameters:

- `isCompleted` (boolean): Mark as complete/incomplete
- `name` (string): New task name
- `taskId` (string, required): The task ID

### `planka_delete_task` (~30 tokens)

Delete a task from a card.

Input parameters:

- `taskId` (string, required): The task ID to delete

### `planka_manage_labels` (~180 tokens)

Create, update, or delete labels on a board.

Input parameters:

- `action` (string, required): Action to perform
- `boardId` (string): Board ID (required for create)
- `color` (string): Label color. Valid colors: berry-red, pumpkin-orange, lagoon-blue, pink-tulip, light-mud, orange-peel, bright-moss, antique-blue, dark-granite, lagune-blue, sunny-grass, morning-sky, light-orange, mi…
- `labelId` (string): Label ID (required for update/delete)
- `name` (string): Label name

### `planka_set_card_labels` (~56 tokens)

Add or remove labels from a card.

Input parameters:

- `addLabelIds` (array): Label IDs to add
- `cardId` (string, required): The card ID
- `removeLabelIds` (array): Label IDs to remove

### `planka_add_comment` (~53 tokens)

Add a comment to a card. Use this for status updates, notes, or agent activity logs.

Input parameters:

- `cardId` (string, required): The card ID
- `text` (string, required): Comment text (markdown supported)

### `planka_get_comments` (~28 tokens)

Get all comments on a card.

Input parameters:

- `cardId` (string, required): The card ID

### `planka_manage_lists` (~78 tokens)

Create, update, or delete lists on a board.

Input parameters:

- `action` (string, required): Action to perform
- `boardId` (string): Board ID (required for create)
- `listId` (string): List ID (required for update/delete)
- `name` (string): List name
- `position` (number): List position

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/gogogadgetbytes-planka/gogogadgetbytes-planka-mcp#diagnostics

## Score history

- 2026-08-03: 69
- 2026-08-02: 68
- 2026-08-01: 6
- 2026-07-31: 21
- 2026-07-30: 46
- 2026-07-28: 46
- 2026-07-27: 46

## Links

- npm package: https://www.npmjs.com/package/@gogogadgetbytes/planka-mcp
- Socket report: https://socket.dev/npm/package/@gogogadgetbytes/planka-mcp
- Repository: https://github.com/gogogadgetbytes/planka-mcp
- Changelog RSS feed: https://verifymcp.io/servers/gogogadgetbytes-planka/gogogadgetbytes-planka-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/gogogadgetbytes-planka/gogogadgetbytes-planka-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/gogogadgetbytes-planka/gogogadgetbytes-planka-mcp
