Updates
MCP tools for updates.
Generated from the live tool catalog in packages/mcp/src/server.ts. Run pnpm mcp-docs in apps/docs to regenerate after changing a tool.
get_update_candidates
Get all issues completed since the last update for a team, an initiative or a project (everything completed, if no update exists yet). Use this before writing an update: summarize these issues into markdown, then call create_update with the same identifiers.
| Parameter | Type | Required | Description |
|---|---|---|---|
team | string | no | Team key, e.g. PRO |
initiative | string | no | Initiative name or id |
project | string | no | Project name or id |
create_update
Publish an update entry for a team, an initiative or a project. Content is markdown; pass the covered issue identifiers so they get tagged. Health (on_track/at_risk/off_track) is computed automatically from the target date and progress - never pass or invent it.
| Parameter | Type | Required | Description |
|---|---|---|---|
team | string | no | Team key (pass exactly one of team/initiative/project) |
initiative | string | no | Initiative name or id |
project | string | no | Project name or id |
title | string | yes | e.g. 'Update - 30 Jul 2026' or a release name |
content | string | yes | Markdown summary, grouped however reads best (Features/Fixes/etc.) |
issues | string[] | no | Issue identifiers covered |
list_updates
List updates for a team, an initiative or a project (newest first) with health and tagged issues.
| Parameter | Type | Required | Description |
|---|---|---|---|
team | string | no | Team key |
initiative | string | no | Initiative name or id |
project | string | no | Project name or id |