List workflows on a live n8n instance
workflow_listList workflows from a live n8n instance. Filter by active status, tags, or name to find specific workflows.
Instructions
List workflows from a live n8n instance (requires N8N_API_URL + N8N_API_KEY env vars). Returns id, name, active, nodeCount, updatedAt, tags. Filter by active, tags, name. Use this when the user asks 'what workflows do I have?' or before workflow_get.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| active | No | Filter by active status. Omit to return both. | |
| tags | No | Comma-separated tag names to filter by. | |
| name | No | Filter by exact workflow name. | |
| limit | No | Page size (n8n default: 100, max: 250). |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| workflows | Yes | Summary of each workflow (id, name, active, nodeCount, ...). | |
| count | Yes | Number of workflows returned. |