clickup_create_task_comment
Post a comment to a ClickUp task, optionally assigning an action item to a user or group, with notification support.
Instructions
Add a comment to a task.
Posts to POST /task/{task_id}/comment.
When to Use:
To leave feedback, ask a question, or hand off context on a task.
To assign a follow-up action item via
assignee/group_assignee.
When NOT to Use:
To reply inside an existing comment thread — use
clickup_create_threaded_comment.To comment on a List's info panel or a Chat view — use
clickup_create_list_comment/clickup_create_chat_view_comment.
Returns:
A confirmation string with the new comment's id, hist_id, and timestamp, or
an Error ... string on failure.
Examples: params = {"task_id": "abc123", "comment_text": "Blocked on design review.", "notify_all": True}
Error Handling: 404 means the task id is wrong; 403 can mean you lack comment access on the task.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |