# io.github.theluckystrike/standup (mcpb · kanban.mcpb)

A task board for daily standups: columns, due dates, priorities, weekly review.

- Trust score: 54/100 (low)
- Change this week: +6
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-09-20

## Components

- mcpb · `kanban.mcpb`: 54/100 (this document), [markdown](https://verifymcp.io/servers/theluckystrike-standup/https-github-com-theluckystrike-mcp-servers-releases-download-v0-21-0-kanban-mcp.md), [page](https://verifymcp.io/servers/theluckystrike-standup/https-github-com-theluckystrike-mcp-servers-releases-download-v0-21-0-kanban-mcp)

## Channel facts

- Registry: `mcpb`
- Package: `https://github.com/theluckystrike/mcp-servers/releases/download/v0.21.0/kanban.mcpb`
- Version: `0.21.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-09-20.

- **Supply Chain Security**: 23/100
  - Malware scan not yet available for this package.
  - Known CVEs were checked across the 96 of 96 dependencies we could resolve, so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - 31 of 96 dependencies flagged as unhealthy.
- **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 13 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 88/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 1136 tokens (~63/item across 18 items; 17 tools + 1 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 43/100
  - Stability observed for 13 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 96/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 88% of tool parameters carry a description.
- **Tool Safety**: 75/100
  - No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.
  - 0 of 2 tool(s) whose name or description implies an irreversible operation declare an MCP destructiveHint annotation; "task_delete" implies "delete" and declares no destructiveHint at all, which the MCP spec reads as destructive by default.
  - An AI judge read all 18 captured unit(s) of tool text and found none that tries to manipulate the model reading it.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

- Download bundle: `https://github.com/theluckystrike/mcp-servers/releases/download/v0.21.0/kanban.mcpb`

## 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-09-19 (score 54, +1)

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

### 2026-09-17 (score 53, +1)

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

### 2026-09-15 (score 52, +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-09-14 (score 51, +3)

- [functional improvement] Stability: unverified → 0.23

### 2026-09-07 (score 48)

First indexed and scored.

## MCP tools (17)

### `license_status` (~23 tokens)

License status

Show whether this server runs in free or Pro mode and where to upgrade.

### `license_activate` (~42 tokens)

Activate license

Activate a Pro license key (format MCPL1.xxx.yyy). Verified offline and saved locally.

Input parameters:

- `key` (string, required): License key from the checkout confirmation page

### `task_add` (~200 tokens)

Add task

Add a task to a project board (todo list / kanban card). Optional column, due date, estimate, priority, tags and notes.

Input parameters:

- `column` (string): Column to start in; defaults to the first column (backlog)
- `due` (string): Due date: YYYY-MM-DD, 'today', 'tomorrow', 'Friday', 'next Monday' or '+3d'
- `estimate_minutes` (integer): How long you think it will take, in minutes
- `notes` (string): Longer notes for the task
- `priority` (string): Priority; defaults to normal
- `project` (string): Project or board name. A partial name matching exactly one existing project is used as that project. Defaults to your only board.
- `tags` (array): Free-form tags, e.g. ['writing','client']
- `title` (string, required): What the task is, e.g. 'Write the launch email'

### `task_list` (~136 tokens)

List tasks

List tasks as a table, filtered by project, column, tag, due date or overdue.

Input parameters:

- `column` (string): Only this column, e.g. 'doing'
- `due_before` (string): Only tasks due on or before this day (YYYY-MM-DD, 'today', 'Friday', '+7d')
- `include_done` (boolean): Include finished tasks; default false
- `limit` (integer): Rows to print; default 200
- `overdue` (boolean): Only tasks past their due date
- `project` (string): Only this project
- `tag` (string): Only tasks carrying this tag

### `task_move` (~50 tokens)

Move task

Move a task to another column on its board.

Input parameters:

- `column` (string, required): Target column, e.g. 'doing'
- `id` (string, required): Task id, e.g. NOVA-12

### `task_update` (~129 tokens)

Update task

Change any field of a task: title, notes, due date, estimate, priority, tags or project.

Input parameters:

- `column` (string)
- `due` (string): New due date, or 'none' to clear it
- `estimate_minutes` (integer)
- `id` (string, required): Task id, e.g. NOVA-12
- `notes` (string)
- `priority` (string)
- `project` (string): Move the task to another existing project board
- `tags` (array): Replaces the whole tag list
- `title` (string)

### `task_done` (~43 tokens)

Complete task

Mark a task done: it moves to the done column and is stamped with the time.

Input parameters:

- `id` (string, required): Task id, e.g. NOVA-12

### `task_delete` (~30 tokens)

Delete task

Delete a task permanently.

Input parameters:

- `id` (string, required): Task id, e.g. NOVA-12

### `task_search` (~47 tokens)

Search tasks

Find tasks whose title, notes, tags or id match a query.

Input parameters:

- `limit` (integer): Rows to print; default 200
- `query` (string, required): Text to look for

### `board` (~37 tokens)

Show board

Column-by-column summary of a project board: task counts and estimate totals.

Input parameters:

- `project` (string): Which board; defaults to your busiest one

### `task_start_timer` (~53 tokens)

Start a timer for a task

Return the exact arguments to pass to the time-tracker server's timer_start for this task, and record the link on the task.

Input parameters:

- `id` (string, required): Task id, e.g. NOVA-12

### `task_log_time` (~61 tokens)

Log time on a task

Add real minutes worked to a task, so estimate and actual can be compared.

Input parameters:

- `id` (string, required): Task id, e.g. NOVA-12
- `minutes` (integer, required): Minutes to add; a negative number corrects an over-count

### `project_list` (~22 tokens)

List projects

All project boards with open task counts, remaining estimate and overdue counts.

### `project_delete` (~63 tokens)

Delete project board

Delete an empty project board and free its free-tier slot. A board that still holds tasks, open or done, is refused with a task named.

Input parameters:

- `project` (string, required): Board to remove, e.g. 'Nova Site'. It must hold no tasks at all.

### `overdue` (~59 tokens)

Overdue tasks

Every task past its due date, across all boards.

Input parameters:

- `as_of` (string): Measure against this day instead of today (YYYY-MM-DD, 'next Monday', '+7d')
- `limit` (integer): Rows to print; default 200

### `weekly_review` (~53 tokens)

Weekly review

Done versus planned for a week, with estimate against actual minutes per project.

Input parameters:

- `week` (string): ISO week, e.g. '2026-W36'. Defaults to this week. Past weeks are a Pro feature.

### `columns_set` (~69 tokens)

Set board columns

Replace the columns of one board (Pro). Tasks sitting in a removed column move to the first column.

Input parameters:

- `columns` (array, required): The new column names in order, at most 12, e.g. ['inbox','next','doing','done']
- `project` (string, required): Which board

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/theluckystrike-standup/https-github-com-theluckystrike-mcp-servers-releases-download-v0-21-0-kanban-mcp#diagnostics

## Score history

- 2026-09-20: 54
- 2026-09-19: 54
- 2026-09-18: 53
- 2026-09-17: 53
- 2026-09-16: 52
- 2026-09-15: 52
- 2026-09-14: 51
- 2026-09-13: 48
- 2026-09-12: 48
- 2026-09-11: 48
- 2026-09-10: 48
- 2026-09-09: 48
- 2026-09-08: 48
- 2026-09-07: 48

## Common questions

### What is the io.github.theluckystrike/standup MCP server?

io.github.theluckystrike/standup is an MCP server listed in the public MCP registry as io.github.theluckystrike/standup. A task board for daily standups: columns, due dates, priorities, weekly review. This page covers its MCPB bundle (https://github.com/theluckystrike/mcp-servers/releases/download/v0.21.0/kanban.mcpb).

### Is the io.github.theluckystrike/standup MCP server safe to use?

io.github.theluckystrike/standup scores 54 out of 100 on VerifyMCP. It declares no install or post-install scripts. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

### What tools does the io.github.theluckystrike/standup MCP server expose?

io.github.theluckystrike/standup exposes 17 tools: license_status, license_activate, task_add, task_list, task_move, and 12 more. Their descriptions and schemas cost roughly 1,117 tokens of context every time the server is loaded.

### What licence is the io.github.theluckystrike/standup MCP server under?

io.github.theluckystrike/standup declares the MIT licence, which is OSI-approved. That covers the source only, and says nothing about the cost of any service it calls.

## Links

- Repository: https://github.com/theluckystrike/mcp-servers
- Website: https://mcp.zovo.one/s/kanban
- Changelog RSS feed: https://verifymcp.io/servers/theluckystrike-standup/https-github-com-theluckystrike-mcp-servers-releases-download-v0-21-0-kanban-mcp.xml
- Changelog JSON feed: https://verifymcp.io/servers/theluckystrike-standup/https-github-com-theluckystrike-mcp-servers-releases-download-v0-21-0-kanban-mcp.json
- HTML version of this page: https://verifymcp.io/servers/theluckystrike-standup/https-github-com-theluckystrike-mcp-servers-releases-download-v0-21-0-kanban-mcp
