next_cron_occurrences
Calculate future firing times of a cron expression after a given start time, returning up to 60 timestamps. No job creation required.
Instructions
Computes when a five-field cron expression would next fire after a given start time, returning up to 60 timestamps. A pure calculation over the expression: no job is created, stored, or executed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | No | How many occurrences to return, 1-60. Defaults to 5. | |
| start | Yes | Occurrences are computed after this, e.g. 2026-07-27T09:00. | |
| expression | Yes | A five-field cron expression, e.g. '30 9 * * MON-FRI'. |