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

NameTypeRequiredDescription
statusstringnoFilter: “success” | “error” | “waiting”. Omit for all.
workflow_idstringnoOnly executions of this workflow id.
limitnumbernoMax executions (1-250, default 50).

Example call

Arguments

{
  "instance_url": "https://n8n.example.com",
  "_apiKey": "your-n8n-api-key"
}

curl

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":{"instance_url":"https://n8n.example.com","_apiKey":"your-n8n-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('n8n_list_executions', {
  "instance_url": "https://n8n.example.com",
  "_apiKey": "your-n8n-api-key"
});

More examples

{
  "instance_url": "https://n8n.example.com",
  "status": "error",
  "workflow_id": "123",
  "limit": 25,
  "_apiKey": "your-n8n-api-key"
}

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.

Regenerated from source · build August 2, 2026