io.github.clm-cloud-solutions/uptimebolt-mcp-server
DevOpsby clm-cloud-solutions
AI 驱动的基础设施监控工具,涵盖健康检查、事故、预测、RCA 与部署安全评估。
什么是 io.github.clm-cloud-solutions/uptimebolt-mcp-server?
AI 驱动的基础设施监控工具,涵盖健康检查、事故、预测、RCA 与部署安全评估。
README
UptimeBolt MCP Server
AI-powered infrastructure monitoring tools for Claude, Claude Code, Cursor, and any MCP-compatible client.
UptimeBolt is an AI-first monitoring platform that groups monitors into logical business services, predicts cascade failures before they happen, and automatically identifies which deploy caused each incident — including the commit, files, and lines of code responsible.
Built by CLM Cloud Solutions in Madrid, Spain.
Why UptimeBolt MCP Server?
Ask your infrastructure questions in natural language. Instead of navigating dashboards, let your AI assistant query real-time monitoring data directly:
- "Is it safe to deploy right now?" — get a data-driven answer based on health scores, active incidents, and predictions
- "What caused the last incident?" — AI-powered root cause analysis with deploy correlation
- "Give me an executive summary of the last 24 hours" — ready for your standup or status report
- "Show me monitors that are degraded" — instant filtered view across your infrastructure
Features
- 10 monitoring tools — service status, incidents, predictions, RCA, deploy safety, and more
- Dual transport — stdio (local) + HTTP (remote/CI-CD)
- API key authentication — secure per-request access to your UptimeBolt data
- Works everywhere — Claude Desktop, Claude Code, Cursor, Cline, and any MCP client
- CI/CD ready — deploy safety checks directly in your pipeline
Quick Start
Install globally (recommended)
npm install -g @uptimebolt/mcp-server
Claude Desktop (stdio)
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"uptimebolt": {
"command": "uptimebolt-mcp",
"env": {
"UPTIMEBOLT_API_KEY": "your-api-key",
"UPTIMEBOLT_API_URL": "https://api.uptimebolt.io"
}
}
}
}
Or without global install, using npx:
{
"mcpServers": {
"uptimebolt": {
"command": "npx",
"args": ["-y", "--package=@uptimebolt/mcp-server", "uptimebolt-mcp"],
"env": {
"UPTIMEBOLT_API_KEY": "your-api-key",
"UPTIMEBOLT_API_URL": "https://api.uptimebolt.io"
}
}
}
}
Claude Code / Cursor
Add to your project's .mcp.json:
{
"mcpServers": {
"uptimebolt": {
"command": "uptimebolt-mcp",
"env": {
"UPTIMEBOLT_API_KEY": "your-api-key",
"UPTIMEBOLT_API_URL": "https://api.uptimebolt.io"
}
}
}
}
Docker (HTTP)
docker run -p 3100:3100 \
-e UPTIMEBOLT_API_URL=https://api.uptimebolt.io \
ghcr.io/clm-cloud-solutions/uptimebolt-mcp-server:latest
Then connect via mcp-remote:
{
"mcpServers": {
"uptimebolt": {
"command": "npx",
"args": ["-y", "mcp-remote", "http://localhost:3100/mcp", "--header", "x-api-key:your-api-key"]
}
}
}
npm (programmatic)
npm install @uptimebolt/mcp-server
import { TOOLS, HANDLERS } from "@uptimebolt/mcp-server";
// TOOLS — MCP tool definitions (10 tools)
// HANDLERS — tool handler functions: (args, context?) => Promise<result>
Available Tools
| Tool | Description |
|---|---|
get_service_status | Health status of business services with health score (0-100), monitor breakdown, and active incidents |
get_monitors | List all monitors with operational status, response time, and uptime percentage |
get_monitor_health | Detailed health for a specific monitor including response time trends and active predictions |
get_monitor_metrics | Response time stats (avg, p95, p99), uptime percentage, and error breakdown |
get_incidents | Active and resolved incidents with optional AI root cause analysis details |
get_predictions | AI predictions for upcoming issues with confidence levels and predicted impact |
get_deployments | Recent deployments with automatic incident correlation (GitHub/GitLab) |
run_root_cause_analysis | AI-powered RCA using multi-model analysis (Claude, GPT) with deploy correlation |
is_safe_to_deploy | CI/CD deploy safety check based on health scores, predictions, and active incidents |
get_executive_summary | Infrastructure health summary for standups, weekly reports, or status updates |
Authentication
Get your API key at app.uptimebolt.io/settings/api-keys.
- stdio mode: Set
UPTIMEBOLT_API_KEYenvironment variable - HTTP mode: Pass
x-api-keyheader with each request (no startup key required)
CI/CD Integration
Use is_safe_to_deploy as a gate in your deployment pipeline:
curl -X POST http://localhost:3100/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-H "x-api-key: your-api-key" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "is_safe_to_deploy",
"arguments": { "service_name": "my-service" }
}
}'
The response includes a risk level (low, medium, high), active issues, and a recommendation (proceed, proceed_with_caution, wait_and_monitor).
Configuration
| Variable | Description | Default |
|---|---|---|
UPTIMEBOLT_API_KEY | Your UptimeBolt API key | (required for stdio) |
UPTIMEBOLT_API_URL | UptimeBolt API base URL | http://localhost:3200 |
MCP_HTTP_PORT | HTTP server port | 3100 |
NODE_ENV | Environment (production disables console logs) | development |
LOG_LEVEL | Log level (error, warn, info, debug) | debug (dev) / info (prod) |
Development
git clone https://github.com/clm-cloud-solutions/uptimebolt-mcp-server.git
cd uptimebolt-mcp-server
cp .env.example .env # configure your environment
npm install
npm run dev # stdio mode
npm run dev:http # HTTP mode
npm run build # compile TypeScript
npm run typecheck # type check without emitting
About UptimeBolt
UptimeBolt is an AI-first SaaS monitoring platform for DevOps teams and SREs. Key capabilities:
- Cascade failure prediction — dependency graph with what-if analysis, downtime cost estimation, and proactive mitigations
- Deploy correlation + RCA 2.0 — automatically correlates GitHub/GitLab deploys with incidents, identifies the responsible commit and files
- AI Copilot — conversational assistant with real-time infrastructure context
- 8 monitor types — HTTP, TCP, DNS, Database, Email, Synthetic, Push, Ping
About CLM Cloud Solutions
CLM Cloud Solutions S.L. is a technology company based in Madrid, Spain, building SaaS products for engineering teams to operate with confidence, speed, and security.
- GitHub
- Contact: info@clmcloudsolutions.es
License
MIT
常见问题
io.github.clm-cloud-solutions/uptimebolt-mcp-server 是什么?
AI 驱动的基础设施监控工具,涵盖健康检查、事故、预测、RCA 与部署安全评估。
相关 Skills
更新日志
by alirezarezvani
基于 Conventional Commits 自动解析提交记录、判断语义化版本升级并生成规范 changelog,适合在 CI、发版前检查提交格式并批量输出可审计发布说明。
✎ 自动生成和管理更新日志与发布说明,帮团队把版本变更说清楚;聚焦版本化与流程自动化,省时又更规范。
可观测性设计
by alirezarezvani
面向生产系统规划可落地的可观测性体系,串起指标、日志、链路追踪与 SLI/SLO、错误预算、告警和仪表盘设计,适合搭建监控平台与优化故障响应。
✎ 把监控、日志、链路追踪串起来,帮助团队从设计阶段构建可观测性,排障更快、系统演进更稳。
环境密钥管理
by alirezarezvani
统一梳理dev/staging/prod的.env和密钥流程,自动生成.env.example、校验必填变量、扫描Git历史泄漏,并联动Vault、AWS SSM、1Password、Doppler完成轮换。
✎ 统一管理环境变量、密钥与配置,减少泄露和部署混乱,安全治理与团队协作一起做好,DevOps 场景很省心。
相关 MCP Server
kubefwd
编辑精选by txn2
kubefwd 是让 AI 帮你批量转发 Kubernetes 服务到本地的开发神器。
✎ 微服务开发者最头疼的本地调试问题,它一键搞定——自动分配 IP 避免端口冲突,还能用自然语言查询状态。但依赖 AI 工作流,纯命令行爱好者可能觉得不够直接。
Cloudflare
编辑精选by Cloudflare
Cloudflare MCP Server 是让你用自然语言管理 Workers、KV 和 R2 等云资源的工具。
✎ 这个工具解决了开发者频繁切换控制台和文档的痛点,特别适合那些在 Cloudflare 上部署无服务器应用、需要快速调试或管理配置的团队。不过,由于它依赖多个子服务器,初次设置可能有点繁琐,建议先从 Workers Bindings 这类核心功能入手。
Terraform
编辑精选by hashicorp
Terraform MCP Server 是让 AI 助手直接操作 Terraform Registry 和 HCP Terraform 的桥梁。
✎ 如果你经常在 Terraform 里翻文档找模块配置,这个服务器能省不少时间——直接问 Claude 就能生成准确的代码片段。最适合管理多云基础设施的团队,但注意它目前只适合本地使用,别在生产环境里暴露 HTTP 端点。