ClickUp MCP Server

by v4lheru
Verified

create_chat_view_comment

Add a new comment to a Chat view. Chat view comments facilitate team discussions outside of specific tasks or lists.

Input Schema

NameRequiredDescriptionDefault
commentTextYesContent of the comment
notifyAllNoIf true, notifications will be sent to everyone including the comment creator
viewIdYesID of the Chat view

Input Schema (JSON Schema)

{ "properties": { "commentText": { "description": "Content of the comment", "type": "string" }, "notifyAll": { "description": "If true, notifications will be sent to everyone including the comment creator", "type": "boolean" }, "viewId": { "description": "ID of the Chat view", "type": "string" } }, "required": [ "viewId", "commentText" ], "type": "object" }