cronmcp is an open-source cron scheduler stdio MCP server built on top of cron, commander, and @modelcontextprotocol/sdk.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"cronmcp": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
cronmcp is an open-source cron scheduler stdio MCP server built on top of cron, commander, and @modelcontextprotocol/sdk.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in other
Persistent memory using a knowledge graph
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Official Miro MCP server - Supports context to code and creating diagrams, docs, and data tables.
MCP Security Weekly
Get CVE alerts and security updates for Cronmcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
cronmcp is an open-source cron scheduler stdio MCP server built on top of cron, commander, and @modelcontextprotocol/sdk.
It lets MCP-compatible clients create and manage scheduled prompt jobs, and optionally subscribe to cron tick notifications through an MCP notification channel.
cron package for in-process job execution.~/.cronmcp/crontab.once: true.24+Use it without installing globally:
npx cronmcp mcp
Or for local development:
npm install
npm run build
npm run dev -- mcp
npx cronmcp mcp
npx cronmcp mcp --channel claude/channel
The server uses stdio, so it is meant to be launched by an MCP client or wrapper rather than browsed directly in a terminal.
npx cronmcp mcp
Starts the stdio MCP server with job persistence at ~/.cronmcp/crontab.
The server currently exposes these tools:
cron_list_jobscron_add_jobcron_update_jobcron_remove_jobWhen started with --channel <name>, the server:
<name>identity/session with path meta.sessionnotifications/<name> for scheduled cron tick eventsEach notification includes:
content: a JSON-encoded event payloadmeta.source: cron (channel contract)meta.user: schedulermeta.session: the cron job IDThe JSON-decoded content payload includes:
sourcejobprompttickedAtcronmcp stores local state under ~/.cronmcp/:
crontab for JSONL job recordsEach record shape:
{"id":"job_34a56f84-cf7e-4f8d-810c-1777d9f4a5f1","schedule":"*/5 * * * * *","prompt":"Check queue depth","once":false}
once: true jobs are removed after the first successful tick.MIT. See LICENSE.