Manage CronAlert uptime monitors, check results, and incidents from any MCP client.
MCPpedia last refreshed this data
Cronalert MCP Server is an MCP server that manage CronAlert uptime monitors, check results, and incidents from any MCP client. Its tool list has not been published yet over stdio, sse and http, requires no API key, and scores 84/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"cronalert": {
"env": {
"CRONALERT_API_KEY": "ca_your_api_key_here"
},
"args": [
"-y",
"cronalert-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server for CronAlert uptime monitoring. Manage your monitors, check results, and incidents from Claude, Cursor, Windsurf, or any MCP-compatible AI client.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'cronalert-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked cronalert-mcp against OSV.dev.
Click any tool to inspect its schema.
Be 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 devops
MCP server for using the GitLab API
MCP server for Komodo - manage Docker containers, servers, stacks, and deployments via AI
MCP Server for kubernetes management commands
Deploy and manage blockchain nodes across 70+ protocols, search docs, request testnet funds.
MCP Security Weekly
Get CVE alerts and security updates for Cronalert MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP server for CronAlert uptime monitoring. Manage your monitors, check results, and incidents from Claude, Cursor, Windsurf, or any MCP-compatible AI client.
Sign up at cronalert.com and create an API key in Settings > API Keys.
When creating the key, choose a scope:
Claude Desktop — edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"cronalert": {
"command": "npx",
"args": ["-y", "cronalert-mcp"],
"env": {
"CRONALERT_API_KEY": "ca_your_api_key_here"
}
}
}
}
Claude Code — run:
claude mcp add cronalert -e CRONALERT_API_KEY=ca_your_key -- npx -y cronalert-mcp
Cursor — add to .cursor/mcp.json:
{
"mcpServers": {
"cronalert": {
"command": "npx",
"args": ["-y", "cronalert-mcp"],
"env": {
"CRONALERT_API_KEY": "ca_your_api_key_here"
}
}
}
}
Remote server (no install needed) — connect any MCP client to:
https://cronalert.com/mcp
Authenticate with Authorization: Bearer ca_your_key header. Supports Streamable HTTP transport.
Ask your AI assistant to manage your monitors (see examples below).
| Tool | Description | Type |
|---|---|---|
list_monitors | List all monitors with status and response times | Read |
create_monitor | Create a new HTTP monitor | Write |
get_monitor | Get details for a specific monitor | Read |
update_monitor | Update settings, pause/resume | Write |
delete_monitor | Permanently delete a monitor | Write |
get_check_results | Check history with uptime % and response times | Read |
get_monitor_incidents | Incidents for a specific monitor | Read |
list_incidents | All active incidents across monitors | Read |
list_status_pages | Your public status pages | Read |
Approvals in MCP clients are client-side: write tools carry destructiveHint: true, so Claude Code / Desktop / Cursor prompt before running them. CronAlert adds two server-side boundaries so the client prompt isn't the only gate:
delete_monitor first returns a preview plus a short-lived, resource-bound confirmToken instead of deleting. The agent must call delete_monitor again with that token in the confirm argument. This prevents a single stray or prompt-injected call from destroying data and gives the server an auditable, explicit second step.The API key is scoped to a single team, so the blast radius of any key is that team's resources.
User prompt: "Create a monitor for https://api.example.com/health that checks every minute, then show me its details."
What happens:
create_monitor with name: "API Health", url: "https://api.example.com/health", checkInterval: 60get_monitor with the new ID to