🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@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

latest
Source
npmnpm
Version
1.25.0
Version published
Weekly downloads
56
-69.73%
Maintainers
1
Weekly downloads
 
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 13 Feb 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts