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

ParameterTypeRequiredDescription
organizationIdstringYesThe organization the server belongs to. From list_organizations.
serverIdstringYesThe server to query. From list_servers.
startTimestringNoISO 8601 lower bound (inclusive). Defaults to the last 24 hours.
limitnumberNoMax events to return (1–100, default 25).
cursorTimestringNoISO 8601 exclusive upper bound, pass the previous response's nextCursor.
status"success" | "error" | "4xx" | "5xx"NoFilter by outcome.
mcpOnlybooleanNoOnly 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.

On this page