streamable-httpMITupdated 4mo ago
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).
What can you do with cron explainer?
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/balance
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 |
|---|---|---|
POST |
/v1/explain |
Parse + describe + next fire times (billed) |
GET |
/v1/balance |
Remaining balance for an x-api-key |
POST |
/v1/checkout |
Create a Stripe Checkout Session |
GET |
/v1/schema |
JSON Schema for request/response |
POST |
/mcp |
MCP Streamable HTTP (JSON-RPC 2.0) |
GET |
/.well-known/mcp.json |
Static tool manifest |
GET |
/health |
Liveness probe |
GET |
/legal/{tos,privacy,disclaimer,notices} |
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.
Install
Add cron explainer to your client. Pick the one you use.
claude mcp add --transport http cron-explainer https://cron-explainer.cron-explainer-prod.workers.dev/mcpcodex mcp add cron-explainer --url https://cron-explainer.cron-explainer-prod.workers.dev/mcp{
"mcpServers": {
"cron-explainer": {
"url": "https://cron-explainer.cron-explainer-prod.workers.dev/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"cron-explainer": {
"type": "http",
"url": "https://cron-explainer.cron-explainer-prod.workers.dev/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"cron-explainer": {
"url": "https://cron-explainer.cron-explainer-prod.workers.dev/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"cron-explainer": {
"serverUrl": "https://cron-explainer.cron-explainer-prod.workers.dev/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation13/25
- Maintenance13/25
- Trust13/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 130 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.1.2Latest | Apr 23, 2026 |
| 0.1.1 | Apr 23, 2026 |