n8n_list_workflows
Pack: n8n · Endpoint: https://gateway.pipeworx.io/n8n/mcp
List workflows in YOUR n8n instance, with an active/inactive breakdown. Answers “how many active workflows do we have”, “list our n8n workflows”, “which workflows are turned on”. Each workflow: id, name, active (on/off), createdAt, updatedAt, tags. Set active_only:true to list just the live ones. Requires your instance_url + n8n API key (_apiKey).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
active_only | boolean | no | Only return active (turned-on) workflows. Default false (all). |
limit | number | no | Max workflows to fetch (1-250, default 100). |
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_workflows","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.