npm cron-mcp-serverstdioMITupdated 1mo ago
An MCP (Model Context Protocol) server that lets AI coding agents — Claude, Cursor, Copilot, Cline — parse, validate, explain, and preview cron expressions.
What can you do with cron mcp?
cron-mcp
An MCP (Model Context Protocol) server that lets AI coding agents — Claude, Cursor, Copilot, Cline — parse, validate, explain, and preview cron expressions.
Built to catch silent cron bugs (impossible schedules, OR-semantics gotchas, midnight spikes) before a job is deployed — a class of mistake that's easy to make and hard to notice until a critical job silently fails to fire.
Why
Cron expressions are deceptively tricky. Common silent failures:
0 0 30 2 *→ never runs (February has no 30th). Syntactically valid, semantically dead.0 0 1,15 * 1→ fires on the 1st OR 15th OR Monday, not "the 1st and 15th if Monday" (the classic dom+dow OR-semantics trap).*/7 * * * *→ uneven step; intervals drift (:00, :07, :14, …, :56, :00— not "every 7 minutes" cleanly).0 0 * * *→ midnight spike; every job in the system competes at 00:00.
cron-mcp surfaces these as warnings, observations, and suggestions that the AI agent can act on — before you ship the schedule.
Tools exposed
| Tool | Description |
|---|---|
parse_cron |
Parse a cron expression → plain-English description of when it fires. Supports 5-field standard cron + L (last), W (nearest weekday), # (nth weekday), named months/days. |
validate_cron |
Deep validation: impossible schedules, OR-semantics, midnight spikes, uneven steps, leap-year edges, frequency estimate (~runs/year). |
next_runs |
Compute the next N fire times as ISO-8601 + relative offsets. |
cron_presets |
Library of common, proven schedules (every 5 min, hourly, weekdays 9am, monthly, quarterly, …). |
Install
npm install -g cron-mcp-server
Published links
- npm package — installable release
0.1.2 - Official MCP Registry — registry record
- GitHub release — downloadable source checkpoint
Configure
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or the equivalent on your OS:
{
"mcpServers": {
"cron": {
"command": "cron-mcp-server",
"args": []
}
}
}
Cursor
Add to .cursor/mcp.json (or ~/.cursor/mcp.json for global):
{
"mcpServers": {
"cron": {
"command": "cron-mcp-server"
}
}
}
VS Code (Copilot)
{
"mcp.servers": {
"cron": {
"type": "stdio",
"command": "cron-mcp-server"
}
}
}
Direct (no install)
npx cron-mcp-server
Example usage
Once connected, just ask the agent in natural language:
- "Validate this cron:
0 0 30 2 *" - "When does
*/5 * * * *next fire?" - "Give me a cron for every weekday at 9am"
- "Is there anything risky about
0 0 1,15 * 1?"
The agent calls the tools and returns structured, actionable results.
Engine
The cron engine is battle-tested: 638 lines, zero dependencies, originally extracted from a browser-based cron generator and hardened with 69 unit tests. This MCP server is a thin tool wrapper around it.
License
MIT © takeaseatventure
Install
Add cron mcp to your client. Pick the one you use.
claude mcp add cron-mcp-server -- npx -y cron-mcp-servercodex mcp add cron-mcp-server -- npx -y cron-mcp-serveramp mcp add cron-mcp-server -- npx -y cron-mcp-server{
"mcpServers": {
"cron-mcp-server": {
"command": "npx",
"args": [
"-y",
"cron-mcp-server"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"cron-mcp-server": {
"command": "npx",
"args": [
"-y",
"cron-mcp-server"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"cron-mcp-server","command":"npx","args":["-y","cron-mcp-server"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"cron-mcp-server": {
"command": "npx",
"args": [
"-y",
"cron-mcp-server"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"cron-mcp-server": {
"command": "npx",
"args": [
"-y",
"cron-mcp-server"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"cron-mcp-server": {
"command": "npx",
"args": [
"-y",
"cron-mcp-server"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"cron-mcp-server": {
"type": "local",
"command": "npx",
"args": [
"-y",
"cron-mcp-server"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"cron-mcp-server": {
"command": {
"path": "npx",
"args": [
"-y",
"cron-mcp-server"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y cron-mcp-serverRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
4 tools
cron mcp exposes 4 tools to a connected agent.
- parse_cron
- Parse a cron expression → plain-English description of when it fires. Supports 5-field standard cron + `L` (last), `W` (nearest weekday), `#` (nth weekday), named months/days.
- validate_cron
- Deep validation: impossible schedules, OR-semantics, midnight spikes, uneven steps, leap-year edges, frequency estimate (~runs/year).
- next_runs
- Compute the next N fire times as ISO-8601 + relative offsets.
- cron_presets
- Library of common, proven schedules (every 5 min, hourly, weekdays 9am, monthly, quarterly, …).
Score
68 / 100
Good
- Documentation18/25
- Maintenance19/25
- Trust13/20
- Capability6/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 22 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
- 4 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.1.2Latest | Aug 1, 2026 |
| 0.1.1 | Aug 1, 2026 |