List Records
list_recordsRetrieve and poll mutable records (todos, shopping lists, kanban boards) from a pane. Pass a prior cursor to fetch only new or changed rows, and include tombstones to track deletions.
Instructions
List rows in a pane's mutable record collection (todo list, shopping list, kanban board, comment thread). Records are the right primitive when the page shows several mutable items and the CURRENT state matters more than the history. This also doubles as the POLL/watch for records (no streaming in MCP): pass the prior next_since to fetch only newer/changed rows. include_tombstones:true surfaces deletions. Returns { records, next_since, has_more }.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Optional page size (max 200). | |
| since | No | Optional cursor (next_since from a prior call). Also the POLL handle: to watch a collection (no streaming in MCP), call repeatedly passing the previous next_since to fetch only newer/changed rows. | |
| pane_id | Yes | The pane id. | |
| collection | Yes | The record collection name declared in the pane's record schema. | |
| include_tombstones | No | Include soft-deleted rows (deleted_at set) so you can observe deletions. Default false. |