Skip to main content

get_run

Get details for a Trigger run by ID, including status, tags, and output when present.

get_run

Get details for a Trigger run by ID (run_...).

Use this with an ID from run_actionflow or list_runs. If you only have a queue item ID, call get_queued_run.

Hosted MCP has no stream tool. For live SSE, use REST Stream Run or the TypeScript SDK.

See Installation for auth and response_format.

Arguments

ArgumentTypeRequiredDescription
runIdstringYesTrigger run ID starting with run_.
response_formatjson or markdownNoDefault json.

Example

{
  "runId": "run_789"
}

Returns

JSON with success and data (run status, tags, output when present).

Invalid runId: IDs must start with run_. Not found or forbidden: the run is missing or not tagged for your organization.

On this page