Tools in this category
| Tool | Mutating | Description |
|---|---|---|
list_task_comments |
no | List all comments on a task, ordered oldest-first. Each entry includes author info, plaintext content, and timestamps. |
create_task_comment |
yes | Add a comment to a task. The comment is attributed to the calling MCP token; only that token can later update or delete it. |
update_task_comment |
yes | Update an MCP-authored task comment. Only the token that created the comment can update it. |
delete_task_comment |
yes | Delete an MCP-authored task comment. Only the token that created the comment can delete it. |
list_task_comments
Mutating: no
List all comments on a task, ordered oldest-first. Each entry includes author info, plaintext content, and timestamps.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
taskDisplayId |
string | yes | Display ID of the task to read comments from (e.g. "T-7") |
create_task_comment
Mutating: yes
Add a comment to a task. The comment is attributed to the calling MCP token; only that token can later update or delete it.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
taskDisplayId |
string | yes | Display ID of the task to comment on (e.g. "T-7") |
content |
string | yes | Plaintext content; markdown is supported and rendered in the web UI |
update_task_comment
Mutating: yes
Update an MCP-authored task comment. Only the token that created the comment can update it.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
commentId |
string | yes | ID of the comment to update |
content |
string | yes | New plaintext content (markdown supported) |
delete_task_comment
Mutating: yes
Delete an MCP-authored task comment. Only the token that created the comment can delete it.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
commentId |
string | yes | ID of the comment to delete |