C
Cronitor MCP
An MCP Server for Cronitor
Created 12/8/2025
Updated 5 days ago
README
Repository documentation and setup instructions
cronitor-mcp

Contents
- Introduction
- Quick Start
- Requirements
- Installation
- Usage
- Docker Image
- Local Development
- Image Development
- Contributing
Introduction
MCP Server for Cronitor monitoring and observability
Quick Start
Run the Docker image:
docker run -d -p 8090:80 \
-e CRONITOR_API_KEY=your_cronitor_api_key_here \
davidsmith3/cronitor-mcp:latest
Add the server to Claude:
claude mcp add --transport http cronitor http://localhost:8090/mcp
Optionally, add the server directly:
{
"mcpServers": {
"cronitor": {
"type": "streamable-http",
"url": "http://localhost:8090/mcp"
}
}
}
Requirements
- PHP 8.1 or higher
Installation
composer require zero-to-prod/cronitor-mcp
Usage
vendor/bin/cronitor-mcp list
Docker
Run using the Docker image:
docker run -d -p 8080:80 \
-e CRONITOR_API_KEY=your_cronitor_api_key_here \
davidsmith3/cronitor-mcp:latest
Environment Variables
CRONITOR_API_KEY- Your Cronitor API key for authentication (get it from Cronitor API Settings)MCP_DEBUG=false- Enable debug mode
Example:
docker run -d -p 8080:80 \
-e CRONITOR_API_KEY=your_cronitor_api_key_here \
-e MCP_DEBUG=true \
davidsmith3/cronitor-mcp:latest
Persistent Sessions
docker run -d -p 8080:80 \
-e CRONITOR_API_KEY=your_cronitor_api_key_here \
-v mcp-sessions:/app/storage/mcp-sessions \
davidsmith3/cronitor-mcp:latest
Contributing
See CONTRIBUTING.md
Links
Quick Setup
Installation guide for this server
Installation Command (package not published)
git clone https://github.com/zero-to-prod/cronitor-mcp
Manual Installation: Please check the README for detailed setup instructions and any additional dependencies required.
Cursor configuration (mcp.json)
{
"mcpServers": {
"zero-to-prod-cronitor-mcp": {
"command": "git",
"args": [
"clone",
"https://github.com/zero-to-prod/cronitor-mcp"
]
}
}
}