cron-explainer
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@cron-explainerWhat does cron '0 9 * * 1-5' do in Lisbon? Show next 3 times."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
cron-explainer
A tiny pay-per-call API that parses cron expressions, returns the next N fire times, and produces a short English description. Timezone-aware (IANA).
Live: https://cron-explainer.cron-explainer-prod.workers.dev/ Pricing: 0.01 EUR per successful call, prepaid via Stripe Checkout in packs of 500 / 5,000 / 50,000 calls. Non-2xx responses are refunded. No subscription. Keys never expire.
Quick start
Get a key at https://cron-explainer.cron-explainer-prod.workers.dev/ (Stripe Checkout, €5 minimum).
Copy the key — it's shown exactly once.
Call the API:
curl -X POST https://cron-explainer.cron-explainer-prod.workers.dev/v1/explain \
-H "content-type: application/json" \
-H "x-api-key: $YOUR_KEY" \
-d '{"cron":"0 9 * * 1-5","tz":"Europe/Lisbon","n":3}'Response:
{
"input": {"cron":"0 9 * * 1-5","tz":"Europe/Lisbon","n":3},
"valid": true,
"description": "At 09:00, Monday through Friday",
"next": ["2026-04-24T08:00:00.000Z","2026-04-27T08:00:00.000Z","2026-04-28T08:00:00.000Z"],
"flags": {"dst_transition_ahead": false, "ambiguous": false, "notes": []},
"errors": []
}Check remaining balance:
curl -H "x-api-key: $YOUR_KEY" \
https://cron-explainer.cron-explainer-prod.workers.dev/v1/balanceRelated MCP server: cron-mcp
MCP
The server is listed on the official MCP registry as
io.github.IdoAzaCalls/cron-explainer with a Streamable HTTP endpoint at
POST /mcp. It exposes one tool, explain_cron. Pass your x-api-key as
an HTTP header on the MCP transport; billing is identical to the REST path.
Registry entry: https://registry.modelcontextprotocol.io/v0/servers?search=cron-explainer
Endpoints
Method | Path | Purpose |
|
| Parse + describe + next fire times (billed) |
|
| Remaining balance for an |
|
| Create a Stripe Checkout Session |
|
| JSON Schema for request/response |
|
| MCP Streamable HTTP (JSON-RPC 2.0) |
|
| Static tool manifest |
|
| Liveness probe |
|
| Legal docs |
Limits
Cron: 5-field POSIX/Vixie syntax (minute, hour, day-of-month, month, day-of-week).
Timezones: IANA names (e.g.
Europe/Lisbon,America/Los_Angeles). Defaults toUTC.nclamps to[1, 100].Best-effort accuracy. See
/legal/disclaimerfor warranty terms.Zero PII: inputs are cron strings and IANA timezones only. Request and response bodies are never logged.
Stack
TypeScript on Cloudflare Workers. Cron parsing via
croner (MIT). English descriptions via
cronstrue (MIT). Full NOTICE
text at /legal/notices.
Contact
azariaido@gmail.com — billing issues, bug reports, custom pricing.
This server cannot be deployed
Maintenance
Related MCP Connectors
Explain cron expressions in English, list next run times, and catch scheduling gotchas.
Validates cron expressions and finds DST bugs that make jobs silently skip or double-fire.
Deterministic time tools for AI agents: timezone conversion, business-day math, cron interpretation.
Business-day, SLA, cron and recurrence calculations — offline, holiday-aware, no network.
Related MCP Servers
- AlicenseAqualityDmaintenanceEnables exploration, explanation, and management of crontab entries, including translating cron expressions into plain English and calculating upcoming execution times.84MIT
- AlicenseAqualityBmaintenanceEnables AI agents to parse, validate, explain, and preview cron expressions, surfacing common silent bugs before deployment.434 npmMIT
- AlicenseNot gradedqualityCmaintenanceProvides tools to parse and describe cron expressions in plain English, and compute future run times.5 npmMIT
- AlicenseNot gradedqualityBmaintenanceParse, validate, and explain cron expressions with pay-per-call via x402 (USDC on Base L2), returning next run times in any timezone.1MIT