ClickUp MCP Server

by v4lheru
Verified

update_comment

Modify an existing comment. This can be used to edit the content, change assignees, or mark comments as resolved.

Input Schema

NameRequiredDescriptionDefault
assigneeYesUser ID to assign the comment to
commentIdYesID of the comment to update
commentTextYesNew content for the comment
groupAssigneeNoGroup to assign the comment to
resolvedNoMark comment as resolved or not

Input Schema (JSON Schema)

{ "properties": { "assignee": { "description": "User ID to assign the comment to", "type": "number" }, "commentId": { "description": "ID of the comment to update", "type": "string" }, "commentText": { "description": "New content for the comment", "type": "string" }, "groupAssignee": { "description": "Group to assign the comment to", "type": "number" }, "resolved": { "description": "Mark comment as resolved or not", "type": "boolean" } }, "required": [ "commentId", "commentText", "assignee" ], "type": "object" }