VoidTrack Docs
MCP tool reference

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.

ParameterTypeRequiredDescription
teamstringnoTeam key, e.g. PRO
initiativestringnoInitiative name or id
projectstringnoProject 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.

ParameterTypeRequiredDescription
teamstringnoTeam key (pass exactly one of team/initiative/project)
initiativestringnoInitiative name or id
projectstringnoProject name or id
titlestringyese.g. 'Update - 30 Jul 2026' or a release name
contentstringyesMarkdown summary, grouped however reads best (Features/Fixes/etc.)
issuesstring[]noIssue identifiers covered

list_updates

List updates for a team, an initiative or a project (newest first) with health and tagged issues.

ParameterTypeRequiredDescription
teamstringnoTeam key
initiativestringnoInitiative name or id
projectstringnoProject name or id

On this page