n8n_executions
Get execution details, list executions with filters, or delete records. Supports pagination, status, and workflow filtering.
Instructions
Manage workflow executions: get details, list, or delete. Use action='get' with id for execution details, action='list' for listing executions, action='delete' to remove execution record.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | Operation: get=get execution details, list=list executions, delete=delete execution | |
| id | No | Execution ID (required for action=get or action=delete) | |
| mode | No | For action=get: preview=structure only, summary=2 items (default), filtered=custom, full=all data, error=optimized error debugging | |
| nodeNames | No | For action=get with mode=filtered: filter to specific nodes by name | |
| itemsLimit | No | For action=get with mode=filtered: items per node (0=structure, 2=default, -1=unlimited) | |
| includeInputData | No | For action=get: include input data in addition to output (default: false) | |
| errorItemsLimit | No | For action=get with mode=error: sample items from upstream node (default: 2, max: 100) | |
| includeStackTrace | No | For action=get with mode=error: include full stack trace (default: false, shows truncated) | |
| includeExecutionPath | No | For action=get with mode=error: include execution path leading to error (default: true) | |
| fetchWorkflow | No | For action=get with mode=error: fetch workflow for accurate upstream detection (default: true) | |
| limit | No | For action=list: number of executions to return (1-100, default: 100) | |
| cursor | No | For action=list: pagination cursor from previous response | |
| workflowId | No | For action=list: filter by workflow ID | |
| projectId | No | For action=list: filter by project ID (enterprise feature) | |
| status | No | For action=list: filter by execution status | |
| includeData | No | For action=list: include execution data (default: false) |