ClickUp MCP Server

by v4lheru
Verified

get_task_comments

Retrieve comments for a specific task. Comments provide discussion history and context for the task.

Input Schema

NameRequiredDescriptionDefault
customTaskIdsNoWhether to use custom task IDs
startNoUnix timestamp in milliseconds to get comments from a specific date
startIdNoComment ID to start pagination from
taskIdYesID of the task
teamIdNoTeam ID (required when customTaskIds is true)

Input Schema (JSON Schema)

{ "properties": { "customTaskIds": { "description": "Whether to use custom task IDs", "type": "boolean" }, "start": { "description": "Unix timestamp in milliseconds to get comments from a specific date", "type": "number" }, "startId": { "description": "Comment ID to start pagination from", "type": "string" }, "taskId": { "description": "ID of the task", "type": "string" }, "teamId": { "description": "Team ID (required when customTaskIds is true)", "type": "string" } }, "required": [ "taskId" ], "type": "object" }