notes_list_comments
Retrieve paginated comments for a specific note. Supports start and limit parameters to control results.
Instructions
List all comments for a note with pagination options.
Returns a paginated list of comments associated with a specific note.
Workflow tips:
Use start/limit for pagination (default limit: 100, max: 500)
Comments are returned in chronological order
Each comment includes author information and timestamps
Common use cases:
Get all comments for a note: { "id": 123 }
Paginated retrieval: { "id": 123, "start": 0, "limit": 50 }
Review conversation history on a note
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ID of the note to get comments for (required) | |
| start | No | Pagination start | |
| limit | No | Number of items to return |