List workflows on a live n8n instance
workflow.listList workflows from your n8n instance with filters for name, tags, and active status. Use this to see available workflows or before retrieving details.
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 |
|---|---|---|---|
| name | No | Filter by exact workflow name. | |
| tags | No | Comma-separated tag names to filter by. | |
| limit | No | Page size (n8n default: 100, max: 250). | |
| active | No | Filter by active status. Omit to return both. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | Yes | Number of workflows returned. | |
| workflows | Yes | Summary of each workflow (id, name, active, nodeCount, ...). |