Get Automation Runs
get_automation_runsFetch paginated automation run history with filters or get detailed run info by trigger UUID. Supports board-level or account-wide queries.
Instructions
Read automation/workflow run history. Read-only.
Modes:
"history": paginated run feed (state, duration, error reason). Use "filters" to narrow results and "nextPageOffset" to page (offset-only — next page = previous offset + returned count).
"detail": single run by "triggerUuid" (required) — returns block steps and MCP tool calls. Set "includeToolEvents": false to skip tool calls.
Scope: provide "boardId" for a specific board or "accountWide": true. One is required.
Known event states: "success", "failure", "exhausted".
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| mode | Yes | history = paginated run feed, detail = single run by triggerUuid | |
| boardId | No | Target a specific board by numeric ID | |
| accountWide | No | Set true to query account-wide (required if no boardId) | |
| nextPageOffset | No | history: page offset (offset-only pagination) | |
| filters | No | history: run filters | |
| triggerUuid | No | detail: required — the run UUID to inspect | |
| includeToolEvents | No | detail: include MCP tool calls (default true) | |
| blockEventsOffset | No | detail: block-events page offset | |
| toolEventsOffset | No | detail: tool-events page offset |