n8n_list_schedules
List all schedule triggers across workflows and decode their interval rules into human-readable strings, answering what runs at a specific time.
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 |
|---|---|---|---|
| workflowId | No | Restrict the scan to a single workflow. Omit to scan recent workflows. | |
| activeOnly | No | Only include schedules from active workflows. Default true — inactive schedules don't fire. | |
| limit | No | When workflowId is omitted, max workflows to fetch and scan (default 100). |