
Cron Parser
- Updated April 11, 2026
- lazymac2x/cron-parser-api
> ⭐ **Building in public from $0 MRR.
About
> ⭐ **Building in public from $0 MRR.** Star if you want to follow the journey - [lazymac-mcp](https://github.com/lazymac2x/lazymac-mcp) (42 tools, one MCP install) · [lazymac-k-mcp](https://github.com/lazymac2x/lazymac-k-mcp) (Korean wedge) · [lazymac-sdk](https://github.com/lazymac2x/lazymac-sdk) (TS client) · [api.lazy-mac.com](https://api.lazy-mac.com) · [Pro $29/mo](https://coindany.gumroad.com/l/zlewvz). [](https://www.npmjs.com/package/@lazymac/mcp)
- [](https://www.npmjs.com/packag
- [](https://smithery.ai/server/lazymac/mcp)
- [](https://coindany.gumroad.com/l/zlewvz)
- [](https://api.lazy-mac.com)
- > 🚀 Want all 42 lazymac tools through ONE MCP install? npx -y @lazymac/mcp · [Pro $29/mo](https://coindany.gumroad.com/
Cron Parser by the numbers
- Exposes 6 verified tools (MCP introspection)
- Data as of Jul 9, 2026 (Skillselion catalog sync)
claude mcp add --transport http cron-parser https://api.lazy-mac.com/cron-parser/mcpAdd your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| Transport | HTTP |
|---|---|
| Auth | None |
| Tools | 6 |
| Last updated | April 11, 2026 |
| Repository | lazymac2x/cron-parser-api ↗ |
How do agents access cron-parser-api capabilities without custom integration code?
> ⭐ **Building in public from $0 MRR.** Star if you want to follow the journey - [lazymac-mcp](https://github.com/lazymac2x/lazymac-mcp) (42 tools, one MCP install) · [lazymac-k-mcp](https://github.co
Who is it for?
Developers wiring cron-parser-api into Cursor, Claude Desktop, or other MCP clients.
Skip if: Teams that need features outside the documented cron-parser-api tool surface.
What you get
Configured MCP host can call cron-parser-api tools with schemas from the server README.
- Validated cron expressions aligned with your worker or job configuration
- Agent-readable explanations of schedule fields and intended run behavior
- Fewer bad deploys caused by malformed cron strings in code or wrangler config
By the numbers
- [object Object]
Cron Parser capabilities & compatibility
- Capabilities
- [
validate_cron1 paramCheck if a cron expression is valid. Returns {valid: bool, error?: string}.
expressionstringrequiredCron expression to validate
next_runs3 paramsGet the next N scheduled run times for a cron expression. Uses standard Unix OR semantics for day fields.
expressionstringrequiredCron expressioncountnumberNumber of next runs to return (1-20, default 5)fromstringISO 8601 start date (default: now)
generate_cron4 paramsGenerate a cron expression from human-friendly options.
everystringrequiredFrequencyatobjectonobjectmonthnumberMonth (1-12)
diff_cron2 paramsCompare two cron expressions and return per-field differences.
firststringrequiredFirst cron expressionsecondstringrequiredSecond cron expression
common_cronsList commonly used cron expressions with descriptions.
README.md

cron-parser-api
⭐ Building in public from $0 MRR. Star if you want to follow the journey — lazymac-mcp (42 tools, one MCP install) · lazymac-k-mcp (Korean wedge) · lazymac-sdk (TS client) · api.lazy-mac.com · Pro $29/mo.
🚀 Want all 42 lazymac tools through ONE MCP install?
npx -y @lazymac/mcp· Pro $29/mo for unlimited calls.
Cron expression parser API — explain, validate, generate, and compute next run times. Supports standard 5-field cron + presets (@daily, @weekly).
Quick Start
npm install && npm start # http://localhost:4400
Endpoints
# Explain a cron expression in plain English
curl http://localhost:4400/api/v1/explain/*/5%20*%20*%20*%20*
# → "at minutes 0, 5, 10, ..., of every hour"
# Validate
curl http://localhost:4400/api/v1/validate/0%209%20*%20*%201-5
# Next 5 run times
curl "http://localhost:4400/api/v1/next/0%209%20*%20*%20*?count=5"
# Generate cron from description
curl -X POST http://localhost:4400/api/v1/generate \
-H "Content-Type: application/json" \
-d '{"every":"day","at":{"hour":9,"minute":0}}'
# Common cron expressions
curl http://localhost:4400/api/v1/common
License
MIT
💡 Host your own stack? Get $200 DigitalOcean credit via lazymac referral link.
Recommended MCP Servers
How it compares
Lightweight cron DSL helper over MCP, not a full scheduler like Kubernetes CronJob or a hosted cron SaaS dashboard.
FAQ
What does cron-parser-api do?
> ⭐ **Building in public from $0 MRR.
When should I use cron-parser-api?
> ⭐ **Building in public from $0 MRR.** Star if you want to follow the journey - [lazymac-mcp](https://github.com/lazymac2x/lazymac-mcp) (42 tools, one MCP install) · [lazymac-k-mcp](https://github.co
Is cron-parser-api safe to install?
Review the Security Audits panel on this page before installing in production.