n8n_list_executions
Pack: n8n · Endpoint: https://gateway.pipeworx.io/n8n/mcp
List recent workflow executions (runs) in your n8n instance — for “did our workflows run”, “show recent failures”, “execution history”. Each: id, workflowId, status (success/error/waiting), mode, startedAt, stoppedAt. Filter by status and/or workflow_id. Requires your instance_url + n8n API key (_apiKey).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
status | string | no | Filter: “success” | “error” | “waiting”. Omit for all. |
workflow_id | string | no | Only executions of this workflow id. |
limit | number | no | Max executions (1-250, default 50). |
Example call
curl -X POST https://gateway.pipeworx.io/n8n/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"n8n_list_executions","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"n8n": {
"url": "https://gateway.pipeworx.io/n8n/mcp"
}
}
}
See Getting Started for client-specific install steps.