get-task-comment-list
Retrieve comments from a Dooray task to view discussion history, progress updates, and team notes. Supports pagination and sorting options.
Instructions
Get list of comments (λκΈ) on a specific Dooray task.
This tool fetches all comments that have been added to a task. Comments are discussions, updates, or notes added by team members.
URL Pattern Recognition: When given a Dooray task URL like "https://nhnent.dooray.com/task/PROJECT_ID/TASK_ID" or "https://nhnent.dooray.com/project/tasks/TASK_ID":
Extract the first numeric ID after "/task/" as projectId (if present)
Extract the second numeric ID (or the ID after "/tasks/") as taskId
IMPORTANT: Both projectId and taskId are REQUIRED.
Pagination:
Default page size is 20 (maximum: 100)
Use page parameter to get additional pages if totalCount > size
Sorting:
Default: createdAt (oldest comments first)
Use "-createdAt" to get newest comments first
Note: Returns filtered response with essential fields only (id, creator, body).
Examples:
Get all comments (first page): {"projectId": "123456", "taskId": "789012"}
Get newest comments first: {"projectId": "123456", "taskId": "789012", "order": "-createdAt"}
Get second page: {"projectId": "123456", "taskId": "789012", "page": 1, "size": 20}
Returns a paginated response with totalCount and array of comments containing:
id: Comment ID
creator: Who wrote the comment (member or emailUser)
For members: {"type": "member", "member": {"organizationMemberId": "..."}}
For email users: {"type": "emailUser", "emailUser": {"emailAddress": "...", "name": "..."}}
body: Comment content with mimeType and content
Use this tool to view discussion history, progress updates, or notes on a task.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| projectId | Yes | Project ID where the task belongs | |
| taskId | Yes | Task ID to get comments from | |
| page | No | Page number (default: 0) | |
| size | No | Items per page (default: 20, max: 100) | |
| order | No | Sort order: createdAt (oldest first, default), -createdAt (newest first) |