MCP tool reference
Comments
MCP tools for comments.
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.
create_comment
Add a comment to an issue.
| Parameter | Type | Required | Description |
|---|---|---|---|
identifier | string | yes | Issue identifier like VOID-12 |
body | string | yes | Comment body (markdown) |
update_comment
Edit a comment you authored on an issue.
| Parameter | Type | Required | Description |
|---|---|---|---|
identifier | string | yes | Issue identifier like VOID-12 |
commentId | string | yes | Comment id from get_issue/list output |
body | string | yes | New comment body (markdown) |
delete_comment
Delete a comment on an issue (author or workspace admin only).
| Parameter | Type | Required | Description |
|---|---|---|---|
identifier | string | yes | Issue identifier like VOID-12 |
commentId | string | yes | Comment id from get_issue/list output |