C
Cronitor MCP
An MCP Server for Cronitor
创建于 12/8/2025
更新于 7 days ago
README
Repository documentation and setup instructions
cronitor-mcp

Contents
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)APP_DEBUG=false- Enable debug mode
Example:
docker run -d -p 8080:80 \
-e CRONITOR_API_KEY=your_cronitor_api_key_here \
-e APP_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
快速设置
此服务器的安装指南
安装命令 (包未发布)
git clone https://github.com/zero-to-prod/cronitor-mcp
手动安装: 请查看 README 获取详细的设置说明和所需的其他依赖项。
Cursor 配置 (mcp.json)
{
"mcpServers": {
"zero-to-prod-cronitor-mcp": {
"command": "git",
"args": [
"clone",
"https://github.com/zero-to-prod/cronitor-mcp"
]
}
}
}