VoidTrack Docs
MCP tool reference

Documents

MCP tools for documents.

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_documents

List markdown documents in the workspace, optionally filtered by search query or linked issue.

ParameterTypeRequiredDescription
qstringnoSearch title and content
issuestringnoOnly documents linked to this issue identifier

get_document

Get a document's full markdown content and linked issues.

ParameterTypeRequiredDescription
idstringyesDocument id

create_document

Create a markdown document in a team, optionally linked to one or more issues.

ParameterTypeRequiredDescription
titlestringyes
teamstringyesTeam key the document belongs to, e.g. PRO
contentstringnoMarkdown body
issuesstring[]noIssue identifiers to link (e.g. PRO-12)

update_document

Update a document's title/content, or link/unlink issues. Only provided fields change.

ParameterTypeRequiredDescription
idstringyesDocument id
titlestringno
contentstringnoFull replacement markdown body
addIssuesstring[]noIssue identifiers to link
removeIssuesstring[]noIssue identifiers to unlink

delete_document

Delete a document.

ParameterTypeRequiredDescription
idstringyesDocument id

On this page