clickup_comment_create
Post a new top-level comment on a ClickUp task. Use markdown and @mentions to communicate with team members and assign comments for notifications.
Instructions
Post a new top-level comment on a ClickUp task. Supports markdown and @mentions in the text body. Returns the created comment object including its new id, which you can pass to clickup_comment_reply, clickup_comment_update, etc.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| assignee | No | Optional user ID to assign the comment to — they will receive a notification. Obtain from clickup_member_list. | |
| notify_all | No | true = send a notification to every assignee of the task; false or omitted = only notify people mentioned or the explicit assignee. | |
| task_id | Yes | ID of the task to comment on. Obtain from clickup_task_list (field: id) or clickup_task_search. | |
| text | Yes | Comment body. Markdown and @mentions (e.g. '@username') are supported. |