New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

@cronicorn/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
75
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cronicorn/mcp-server

MCP server for Cronicorn - enables AI agents to manage cron jobs via Model Context Protocol

Source
npmnpm
Version
1.22.4
Version published
Maintainers
1
Created
Source

Cronicorn MCP Server

npm version MCP Registry

Manage cron jobs by talking to your AI assistant.

You: "Check my API health every 5 minutes"
AI: ✅ Created job with health check running every 5 minutes.

You: "Help me migrate my app's scheduling to Cronicorn"
AI: I found 3 cron jobs in your codebase. Here's how to move each one...

You: "Give me 5 profitable SaaS ideas built on Cronicorn"
AI: Based on Cronicorn's adaptive scheduling and AI capabilities...

Works with Claude, GitHub Copilot, Cursor, Cline, Continue, and any MCP-compatible assistant.

Setup

Claude Code (CLI)
claude mcp add cronicorn -- npx -y @cronicorn/mcp-server
Claude Desktop

~/Library/Application Support/Claude/claude_desktop_config.json (macOS)

{
  "mcpServers": {
    "cronicorn": {
      "command": "npx",
      "args": ["-y", "@cronicorn/mcp-server"]
    }
  }
}
VS Code / GitHub Copilot

In VS Code settings (JSON):

{
  "github.copilot.chat.mcp.servers": {
    "cronicorn": {
      "command": "npx",
      "args": ["-y", "@cronicorn/mcp-server"]
    }
  }
}

Or create ~/.vscode/mcp.json:

{
  "mcpServers": {
    "cronicorn": {
      "command": "npx",
      "args": ["-y", "@cronicorn/mcp-server"]
    }
  }
}
Cursor / Cline / Continue
{
  "mcpServers": {
    "cronicorn": {
      "command": "npx",
      "args": ["-y", "@cronicorn/mcp-server"]
    }
  }
}

Authentication

On first run, the server starts OAuth device flow:

  • Opens browser to https://cronicorn.com/device/approve
  • Enter the displayed user code
  • Credentials stored in ~/.cronicorn/credentials.json

Tokens are valid for 30 days. Re-authentication is automatic when expired.

Tools

Jobs

ToolDescription
createJobCreate a new job container
getJobGet job details
listJobsList all jobs
updateJobUpdate job properties
archiveJobArchive a job (soft delete)
pauseJobPause job execution
resumeJobResume paused job

Endpoints

ToolDescription
addEndpointAdd HTTP endpoint to a job
getEndpointGet endpoint details
listEndpointsList endpoints for a job
updateEndpointUpdate endpoint config
archiveEndpointArchive an endpoint
pauseResumeEndpointPause/unpause endpoint

AI Scheduling

ToolDescription
applyIntervalHintSuggest new interval
scheduleOneShotTrigger immediate run
clearHintsRemove pending hints
resetFailuresReset failure count

Monitoring

ToolDescription
listEndpointRunsGet execution history
getRunDetailsGet specific run details
getEndpointHealthGet health summary
getDashboardStatsGet account-wide stats

Documentation Resources

The server bundles comprehensive docs as MCP resources — concepts, recipes, API reference, troubleshooting, and self-hosting guides. AI assistants read these automatically to answer questions about Cronicorn.

For conversational examples and detailed tool call walkthroughs, see the full docs.

Updating

Use @latest tag to always get the newest version:

{
  "mcpServers": {
    "cronicorn": {
      "command": "npx",
      "args": ["-y", "@cronicorn/mcp-server@latest"]
    }
  }
}

Environment Variables

VariableDefaultDescription
CRONICORN_API_URLhttps://cronicorn.com/apiAPI base URL
CRONICORN_WEB_URLhttps://cronicorn.comWeb UI URL

Development

# From monorepo root
pnpm install
pnpm --filter @cronicorn/mcp-server build
pnpm --filter @cronicorn/mcp-server dev

Troubleshooting

"No credentials found" - Delete ~/.cronicorn/credentials.json and re-authenticate.

Browser doesn't open - Manually visit the URL shown in terminal.

"Invalid grant" error - Token revoked. Delete credentials and re-authenticate.

License

FSL-1.1-MIT

Keywords

mcp

FAQs

Package last updated on 11 Feb 2026

Related posts