Uptimebolt MCP Server

AI-powered infrastructure monitoring — health, incidents, predictions, RCA, deploy safety

Local serverstdioTypeScript

What is the Uptimebolt MCP server?

AI-powered infrastructure monitoring — health, incidents, predictions, RCA, deploy safety. The uptimebolt mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 10 defined tools rather than through you.

What it actually does

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.

UptimeBolt is an AI-first SaaS monitoring platform for DevOps teams and SREs. Key capabilities:

  • "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

Its toolset

Everything the assistant can do here goes through one of these:

  • 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

Adding it to your client

Installation goes through your MCP client rather than a global install: point it at @uptimebolt/mcp-server on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

Configuration

You will need 2 environment variables: UPTIMEBOLT_API_KEY, UPTIMEBOLT_API_URL. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

When to reach for it

Plenty of cloud and infrastructure servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Uptimebolt's toolset — get_service_status, get_monitors, get_monitor_health and 7 more — is a fair guide to whether it matches your workflow. It is maintained by clm-cloud-solutions; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 10 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Uptimebolt.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the uptimebolt mcp server does with a few real requests.

Available tools

ToolWhat it does
get_service_statusHealth status of business services with health score (0-100), monitor breakdown, and active incidents
get_monitorsList all monitors with operational status, response time, and uptime percentage
get_monitor_healthDetailed health for a specific monitor including response time trends and active predictions
get_monitor_metricsResponse time stats (avg, p95, p99), uptime percentage, and error breakdown
get_incidentsActive and resolved incidents with optional AI root cause analysis details
get_predictionsAI predictions for upcoming issues with confidence levels and predicted impact
get_deploymentsRecent deployments with automatic incident correlation (GitHub/GitLab)
run_root_cause_analysisAI-powered RCA using multi-model analysis (Claude, GPT) with deploy correlation
is_safe_to_deployCI/CD deploy safety check based on health scores, predictions, and active incidents
get_executive_summaryInfrastructure health summary for standups, weekly reports, or status updates

How to install the Uptimebolt MCP server

Or without global install, using npx:

```json
{
  "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"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
UPTIMEBOLT_API_KEYCredential the server authenticates with.Yes
UPTIMEBOLT_API_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Uptimebolt to get service status.
  • Use Uptimebolt to get monitors.
  • Use Uptimebolt to get monitor health.

Frequently asked questions

It connects Uptimebolt to MCP-compatible AI assistants such as Claude and Cursor, exposing 10 tools (get_service_status, get_monitors, get_monitor_health, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Uptimebolt directly.