ClickUp MCP Server

by v4lheru
Verified

create_task_comment

Add a new comment to a task. Comments can be assigned to team members and include rich text formatting.

Input Schema

NameRequiredDescriptionDefault
assigneeNoUser ID to assign the comment to (optional)
commentTextYesContent of the comment
customTaskIdsNoWhether to use custom task IDs
groupAssigneeNoGroup to assign the comment to (optional)
notifyAllNoIf true, notifications will be sent to everyone including the comment creator
taskIdYesID of the task
teamIdNoTeam ID (required when customTaskIds is true)

Input Schema (JSON Schema)

{ "properties": { "assignee": { "description": "User ID to assign the comment to (optional)", "type": "number" }, "commentText": { "description": "Content of the comment", "type": "string" }, "customTaskIds": { "description": "Whether to use custom task IDs", "type": "boolean" }, "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" }, "taskId": { "description": "ID of the task", "type": "string" }, "teamId": { "description": "Team ID (required when customTaskIds is true)", "type": "string" } }, "required": [ "taskId", "commentText" ], "type": "object" }