n8n_list_schedules
Scan n8n workflows to surface all schedule triggers, decode their cron rules into human-readable intervals, and identify what runs at specific times.
Instructions
Surface every schedule trigger across workflows so you can answer 'what's running at 3am?' without clicking through the n8n UI. Walks scheduleTrigger and legacy cron nodes, decodes their interval rules into human-readable strings (e.g. 'every 2 hours', 'daily at 03:00', 'cron: 0 */6 * * *'), and returns workflow context + the raw rule for further inspection. Read-only.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | When workflowId is omitted, max workflows to fetch and scan (default 100). | |
| activeOnly | No | Only include schedules from active workflows. Default true — inactive schedules don't fire. | |
| workflowId | No | Restrict the scan to a single workflow. Omit to scan recent workflows. |