VoidTrack Docs
MCP tool reference

Issues

MCP tools for issues.

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.

list_issues

List or search issues. All filters optional. Use q for full-text search on title/description.

ParameterTypeRequiredDescription
teamstringnoTeam key (e.g. VOID) or id
statestringnoWorkflow state name (requires team)
stateTypestringnoComma-separated state types: backlog,unstarted,started,completed,canceled
assigneestringnoUser email, id, or 'me'
projectstringnoProject name or id
cyclestringnoCycle number, id, or 'current' (requires team)
qstringnoSearch query
limitintegerno

get_issue

Get a single issue by identifier (e.g. VOID-12), including comments and sub-issues.

ParameterTypeRequiredDescription
identifierstringyesIssue identifier like VOID-12, or issue id

create_issue

Create an issue in a team.

ParameterTypeRequiredDescription
teamstringyesTeam key (e.g. VOID) or id
titlestringyes
parentstringnoParent issue identifier to create a sub-issue
descriptionstringnoMarkdown description
statestringnoWorkflow state name, e.g. 'In Progress'
priorityintegerno0=none 1=urgent 2=high 3=medium 4=low
estimatenumbernoPoints on the team's estimate scale (0.5 supported)
assigneestringnoUser email, id, or 'me'
projectstringnoProject name or id
cyclestringnoCycle number, id, or 'current'
labelsstring[]noLabel names (missing ones are created)
dueDatestringnoYYYY-MM-DD

update_issue

Update an issue. Only provided fields change. Set state to a completed-type state (e.g. 'Done') to close.

ParameterTypeRequiredDescription
identifierstringyesIssue identifier like VOID-12
titlestringno
descriptionstringnoMarkdown description
statestringnoWorkflow state name, e.g. 'In Progress'
priorityintegerno0=none 1=urgent 2=high 3=medium 4=low
estimatenumbernoPoints on the team's estimate scale (0.5 supported)
assigneestringnoUser email, id, or 'me'
projectstringnoProject name or id
cyclestringnoCycle number, id, or 'current'
labelsstring[]noLabel names (missing ones are created)
dueDatestringnoYYYY-MM-DD

On this page