clickup_get_threaded_comments
Retrieve all replies in a comment thread, excluding the parent comment. Use to read the full nested discussion under any comment.
Instructions
List the replies in a comment's thread.
Calls GET /comment/{comment_id}/reply. The parent comment itself is NOT
included in the response — only its replies.
When to Use:
To read the full discussion nested under a specific comment.
When NOT to Use:
To read a task/list/Chat-view's top-level comments — use
clickup_get_task_comments/clickup_get_list_comments/clickup_get_chat_view_comments.
Returns: Markdown (default) or JSON list of replies with id, author, date, and (truncated) text.
Pagination:
Unlike the three top-level comment-listing tools, ClickUp does NOT expose
start/start_id cursor pagination for replies — this endpoint returns
the full thread in one call, so no cursor params are surfaced here.
Examples: params = {"comment_id": "446750"}
Error Handling: 404 means the parent comment_id is wrong.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |