cron-parser
Parses any Unix cron expression into plain English, showing schedule description, field breakdown, and next run times. Supports @yearly/@monthly and other shortcuts.
Instructions
Parse and explain any Unix cron expression in plain English. Returns human-readable schedule description, field breakdown, and the next N run times (UTC). Supports @yearly/@monthly/@weekly/@daily/@hourly shortcuts. Zero external calls.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| expression | No | Cron expression (5 fields: minute hour day month weekday) or shortcut (@daily, @hourly, etc.). Example: '0 9 * * 1-5'. Defaults to '@daily'. | |
| next_runs | No | Number of upcoming run times to return (default 5, max 20). | |
| from_iso | No | ISO 8601 reference timestamp to compute next runs from (default: now). |