Get Events
get_eventsPoll a pane's append-only event log for human actions such as submissions or approvals. Supports long-polling to wait for new events.
Instructions
Poll a pane's append-only event log for what the human did (form submissions, approvals, picks). This is how you receive the round-trip result — there is no push/streaming in MCP. Poll loop: call with no since first; process the returned events; remember next_cursor; call again passing it as since to get only newer events. To WAIT for a human who hasn't acted yet, pass wait_seconds (~25) so the relay holds the request open until an event arrives or it times out, then call again with the same cursor. Returns { events, next_cursor }.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| since | No | Opaque cursor from a previous get_events call's next_cursor. Omit on the first call to read from the beginning. | |
| pane_id | Yes | The pane id to read events from. | |
| wait_seconds | No | Optional long-poll: how long the relay holds the request open waiting for a new event (0–30s). Use ~25 when waiting for a human to act, then call again with the same cursor. |