list_server_events
Cursor-paginated gateway request log for a server.
Returns the gateway request log for a server, newest first. Each row includes method, path, status code, duration, client name/version, country, and error details when present. Read-only.
Pagination is cursor-based, not offset: call again with cursorTime set to the previous response's nextCursor to page back further in time.
In MCP Apps-capable clients this renders the gateway-events widget: an interactive event table.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
organizationId | string | Yes | The organization the server belongs to. From list_organizations. |
serverId | string | Yes | The server to query. From list_servers. |
startTime | string | No | ISO 8601 lower bound (inclusive). Defaults to the last 24 hours. |
limit | number | No | Max events to return (1–100, default 25). |
cursorTime | string | No | ISO 8601 exclusive upper bound, pass the previous response's nextCursor. |
status | "success" | "error" | "4xx" | "5xx" | No | Filter by outcome. |
mcpOnly | boolean | No | Only return MCP protocol events (default false). |
Typical use
Drill into errors: filter with status: "error", inspect the failing requests, then match timestamps against get_deployment_runtime_logs.