n8n_list_executions
ActiveTool of N8n
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 schema
{
"type": "object",
"required": [
"instance_url",
"_apiKey"
],
"properties": {
"limit": {
"type": "number",
"description": "Max executions (1-250, default 50)."
},
"status": {
"enum": [
"success",
"error",
"waiting"
],
"type": "string",
"description": "Filter: \"success\" | \"error\" | \"waiting\". Omit for all."
},
"_apiKey": {
"type": "string",
"description": "REQUIRED — your n8n API key (Settings → n8n API → Create an API key). Sent as the X-N8N-API-KEY header. No shared key exists for this pack."
},
"workflow_id": {
"type": "string",
"description": "Only executions of this workflow id."
},
"instance_url": {
"type": "string",
"description": "REQUIRED — your n8n instance base URL, e.g. \"https://you.app.n8n.cloud\" (n8n Cloud) or \"https://n8n.example.com\" (self-hosted). Must be a public https URL."
}
}
}No endpoints wrapped at confidence ≥ 0.50.
Parent server
N8n
https://github.com/pipeworx-io/mcp-n8n
1/7 registries