npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@cronicorn/mcp-server

v1.25.0

Published

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

Downloads

2,251

Readme

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 mcp add cronicorn -- npx -y @cronicorn/mcp-server

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

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

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"]
    }
  }
}
{
  "mcpServers": {
    "cronicorn": {
      "command": "npx",
      "args": ["-y", "@cronicorn/mcp-server"]
    }
  }
}

Authentication

On first run, the server starts OAuth device flow:

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

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

Tools

Jobs

| Tool | Description | |------|-------------| | createJob | Create a new job container | | getJob | Get job details | | listJobs | List all jobs | | updateJob | Update job properties | | archiveJob | Archive a job (soft delete) | | pauseJob | Pause job execution | | resumeJob | Resume paused job |

Endpoints

| Tool | Description | |------|-------------| | addEndpoint | Add HTTP endpoint to a job | | getEndpoint | Get endpoint details | | listEndpoints | List endpoints for a job | | updateEndpoint | Update endpoint config | | archiveEndpoint | Archive an endpoint | | pauseResumeEndpoint | Pause/unpause endpoint |

AI Scheduling

| Tool | Description | |------|-------------| | applyIntervalHint | Suggest new interval | | scheduleOneShot | Trigger immediate run | | clearHints | Remove pending hints | | resetFailures | Reset failure count |

Monitoring

| Tool | Description | |------|-------------| | listEndpointRuns | Get execution history | | getRunDetails | Get specific run details | | getEndpointHealth | Get health summary | | getDashboardStats | Get 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

| Variable | Default | Description | |----------|---------|-------------| | CRONICORN_API_URL | https://cronicorn.com/api | API base URL | | CRONICORN_WEB_URL | https://cronicorn.com | Web 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