Get App Feed Events
get_feed_eventsPoll a v2 app's change feed for what has happened: row creates, updates and deletes, from any writer, agent or human. It is the long-poll analogue of homespun apps watch, since MCP has no streaming. The loop is: call with no since first, process the returned entries, keep the cursor, then call again passing it as since to get only newer entries. Passing wait (around 25) holds the request open until an entry arrives or it times out, which is how the feed is waited on rather than busy-polled. A since older than the retention floor returns resync_required, and the collections are then re-listed with list_rows. Returns { entries, cursor, truncated }.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| wait | No | Optional long-poll: how long the relay holds the request open waiting for a new entry (0-30s). Use ~25 when waiting for activity, then call again with the same cursor. | |
| limit | No | Max entries per page (capped server-side by FEED_PAGE_MAX). | |
| since | No | Opaque numeric cursor from a previous call's cursor. Omit (or 0) to read from the beginning. | |
| app_id | Yes | The app id. |