ClickUp MCP Server

by v4lheru
Verified

create_list_comment

Add a new comment to a list. List comments can be used for general discussion about the list's purpose or status.

Input Schema

NameRequiredDescriptionDefault
assigneeYesUser ID to assign the comment to
commentTextYesContent of the comment
listIdYesID of the list
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", "type": "number" }, "commentText": { "description": "Content of the comment", "type": "string" }, "listId": { "description": "ID of the list", "type": "string" }, "notifyAll": { "description": "If true, notifications will be sent to everyone including the comment creator", "type": "boolean" } }, "required": [ "listId", "commentText", "assignee" ], "type": "object" }