clickup_get_task_comments
List comments from a task, newest first. Use to read discussion history before acting on the task.
Instructions
List comments on a task, newest first.
Calls GET /task/{task_id}/comment.
When to Use:
To read discussion history on a task before acting on it.
When NOT to Use:
To read replies inside a specific thread — use
clickup_get_threaded_comments.
Returns: Markdown (default) or JSON list of comments with id, author, date, resolved state, assignee, and (truncated) text.
Pagination:
Cursor-based, NOT limit/offset. Omit start/start_id for the most recent
25 comments (ClickUp's fixed page size — not configurable). To page to
OLDER comments, pass the oldest comment's date as start and its id as
start_id; the markdown output surfaces both values whenever a full page
(25) comes back, so callers can loop until a short page signals the end.
Examples: params = {"task_id": "abc123"} params = {"task_id": "abc123", "start": 1508369194377, "start_id": "446750"}
Error Handling: 404 means the task id is wrong.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |