UptimeBolt MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@UptimeBolt MCP ServerIs it safe to deploy right now?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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
Related MCP server: AIOps MCP
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-serverClaude 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:latestThen 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-serverimport { TOOLS, HANDLERS } from "@uptimebolt/mcp-server";
// TOOLS — MCP tool definitions (10 tools)
// HANDLERS — tool handler functions: (args, context?) => Promise<result>Available Tools
Tool | Description |
| Health status of business services with health score (0-100), monitor breakdown, and active incidents |
| List all monitors with operational status, response time, and uptime percentage |
| Detailed health for a specific monitor including response time trends and active predictions |
| Response time stats (avg, p95, p99), uptime percentage, and error breakdown |
| Active and resolved incidents with optional AI root cause analysis details |
| AI predictions for upcoming issues with confidence levels and predicted impact |
| Recent deployments with automatic incident correlation (GitHub/GitLab) |
| AI-powered RCA using multi-model analysis (Claude, GPT) with deploy correlation |
| CI/CD deploy safety check based on health scores, predictions, and active incidents |
| 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 variableHTTP 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 |
| Your UptimeBolt API key | (required for stdio) |
| UptimeBolt API base URL |
|
| HTTP server port |
|
| Environment ( |
|
| Log level (error, warn, info, debug) |
|
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 emittingAbout 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.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityDmaintenanceAn MCP server that enables Claude to manage infrastructure across Kubernetes, Docker, Prometheus, and Terraform through natural language. It provides over 42 specialized tools with a safety-first design, including risk-based command classification and audit logging.43MIT
- Alicense-qualityDmaintenanceA multi-agent MCP server that turns LLMs into an autonomous incident-response copilot, enabling rapid investigation, correlation, and remediation of production incidents.MIT
- Flicense-qualityDmaintenanceEnables AI-driven incident response by connecting Claude to monitoring tools like Prometheus, Grafana, Loki, PagerDuty, and Slack for automated investigation and runbook generation.9
- Flicense-qualityDmaintenanceMCP server exposing portfolio AI tools including semantic search, evaluation framework, and prompt management, enabling natural language interaction with these services via Claude Desktop.
Related MCP Connectors
Uptime, SSL, DNS and domain monitoring you can talk to from Claude or any MCP client.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
AI agent run monitoring with incident replay and SLA receipts.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/clm-cloud-solutions/uptimebolt-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server