List n8n Executions
n8n_list_executionsList n8n workflow executions, filter by workflow ID or status, and include execution data. Returns paginated results in markdown or JSON for monitoring and debugging.
Instructions
List workflow executions with optional filtering.
Args:
workflowId (string?): Filter by specific workflow ID
status ('new'|'running'|'success'|'failed'|'waiting'|'canceled'?): Filter by status
includeData (boolean): Include execution data/output (default false, increases response size)
limit (number): Max results per page (1-250, default 20)
cursor (string?): Pagination cursor from previous response
response_format ('markdown' | 'json'): Output format (default 'markdown')
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| cursor | No | Pagination cursor | |
| status | No | Filter by execution status | |
| workflowId | No | Filter by workflow ID | |
| includeData | No | Include execution data/output | |
| response_format | No | markdown |