delete_comment
Delete a comment from a task using its comment ID and the parent task ID. Use this to remove incorrect or outdated comments.
Instructions
Delete a comment (soft-delete). Returns the deleted Comment with
deleted_at populated.
Like subtasks, the Kanban Tool API soft-deletes — the comment record is
retained server-side with a deleted_at timestamp and stops appearing
on the parent task's comments. The MCP-visible effect is "the comment is
gone." There is no edit endpoint on the API; if you need to "fix" a
comment, delete it and post a replacement.
Failure modes: KanbanToolHTTPError(404) when either id is unknown
or the comment isn't on that task — common cause is reusing a stale
comment_id from a previous list. Re-fetch the task's current
comments before retrying.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes | ||
| comment_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| content | Yes | ||
| user_id | No | ||
| created_at | No | ||
| updated_at | No | ||
| deleted_at | No |