ClickUp MCP Server

by v4lheru
Verified

create_threaded_comment

Add a reply to an existing comment. Threaded comments help keep discussions organized by grouping related comments together.

Input Schema

NameRequiredDescriptionDefault
assigneeNoUser ID to assign the comment to (optional)
commentIdYesID of the parent comment
commentTextYesContent of the threaded comment
groupAssigneeNoGroup to assign the comment to (optional)
notifyAllNoIf true, notifications will be sent to everyone including the comment creator

Input Schema (JSON Schema)

{ "properties": { "assignee": { "description": "User ID to assign the comment to (optional)", "type": "number" }, "commentId": { "description": "ID of the parent comment", "type": "string" }, "commentText": { "description": "Content of the threaded comment", "type": "string" }, "groupAssignee": { "description": "Group to assign the comment to (optional)", "type": "string" }, "notifyAll": { "description": "If true, notifications will be sent to everyone including the comment creator", "type": "boolean" } }, "required": [ "commentId", "commentText" ], "type": "object" }