clickup_comment_create
Post a new top-level comment on a ClickUp task with @mention support. Markdown is stored as literal text and not rendered.
Instructions
Post a new top-level comment on a ClickUp task. @mentions are recognised by ClickUp. Note: ClickUp's v2 comment API stores the body verbatim and does NOT render markdown. Tokens like **bold** appear as literal characters in the UI. 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. @mentions (e.g. '@username') are rendered. Markdown is NOT rendered by ClickUp's v2 comment API. Markdown syntax is stored as literal text. |