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
| Argument | Type | Required | Description |
|---|---|---|---|
runId | string | Yes | Trigger run ID starting with run_. |
response_format | json or markdown | No | Default 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.
Related
- list_runs
- cancel_run
- REST Get Run