List Rows
list_rowsList rows in a v2 app's mutable collection. This is also how a collection's current state is polled, since MCP has no streaming: pass the prior next_cursor as since to fetch only rows that are new or changed. Returns { rows, next_cursor, has_more }.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Page size. | |
| since | No | Opaque cursor from a previous call's next_cursor. Also the poll handle: pass it back to fetch only newer/changed rows. | |
| app_id | Yes | The app id. | |
| collection | Yes | The collection name declared in the app's manifest. |