parse_cron
Parse cron expressions into human-readable schedules and compute next run times, with support for @daily and @hourly.
Instructions
Parse a cron expression into a human-readable description and calculate next run times. Supports standard 5-field cron and special strings like @daily, @hourly.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| num_next | No | Number of next run times to return (default: 5, max: 20) | |
| timezone | No | Timezone for calculations (default: UTC, e.g., "Europe/Zurich") | |
| expression | Yes | Cron expression (e.g., "*/5 * * * *", "0 9 * * MON-FRI") |