Skip to main content
Glama
clm-cloud-solutions

UptimeBolt MCP Server

UptimeBolt MCP Server

Claude, Claude Code, Cursor 및 모든 MCP 호환 클라이언트를 위한 AI 기반 인프라 모니터링 도구입니다.

UptimeBolt는 모니터를 논리적 비즈니스 서비스로 그룹화하고, 장애가 발생하기 전에 연쇄 실패를 예측하며, 각 인시던트를 일으킨 배포(커밋, 파일, 책임이 있는 코드 라인 포함)를 자동으로 식별하는 AI 우선 모니터링 플랫폼입니다.

스페인 마드리드의 CLM Cloud Solutions이(가) 제작했습니다.

UptimeBolt MCP Server를 선택해야 하는 이유

인프라 관련 질문을 자연어로 물어보세요. 대시보드를 탐색하는 대신 AI 어시스턴트가 실시간 모니터링 데이터를 직접 조회할 수 있게 하세요:

  • "지금 배포해도 안전한가요?" — 상태 점수, 활성 인시던트, 예측을 기반으로 한 데이터 기반 답변

  • "마지막 인시던트의 원인은 무엇인가요?" — 배포 상관관계를 포함한 AI 기반 근본 원인 분석

  • "지난 24시간에 대한 경영진 요약을 알려주세요" — 스탠드업 또는 상태 보고서에 바로 사용 가능

  • "성능이 저하된 모니터를 보여주세요" — 인프라 전반에 걸친 즉시 필터링된 보기

Related MCP server: AIOps MCP

기능

  • 10가지 모니터링 도구 — 서비스 상태, 인시던트, 예측, RCA, 배포 안전성 등

  • 이중 전송 방식 — stdio(로컬) + HTTP(원격/CI-CD)

  • API 키 인증 — UptimeBolt 데이터에 대한 요청별 보안 액세스

  • 어디서나 작동 — Claude Desktop, Claude Code, Cursor, Cline 및 모든 MCP 클라이언트

  • CI/CD 준비 완료 — 파이프라인에서 직접 배포 안전성 검사

빠른 시작

전역 설치(권장)

npm install -g @uptimebolt/mcp-server

Claude Desktop(stdio)

Claude Desktop 구성(~/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"
      }
    }
  }
}

또는 전역 설치 없이 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

프로젝트의 .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

그런 다음 mcp-remote로 연결하세요:

{
  "mcpServers": {
    "uptimebolt": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "http://localhost:3100/mcp", "--header", "x-api-key:your-api-key"]
    }
  }
}

npm (프로그래밍 방식)

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>

사용 가능한 도구

도구

설명

get_service_status

상태 점수(0-100), 모니터 세부 현황, 활성 인시던트를 포함한 비즈니스 서비스의 상태

get_monitors

운영 상태, 응답 시간, 가동률 백분율을 포함한 모든 모니터 목록

get_monitor_health

응답 시간 추세와 활성 예측을 포함한 특정 모니터의 상세 상태

get_monitor_metrics

응답 시간 통계(평균, p95, p99), 가동률 백분율, 오류 세부 분석

get_incidents

선택적 AI 근본 원인 분석 세부 정보가 포함된 활성 및 해결된 인시던트

get_predictions

신뢰 수준과 예상 영향을 포함한 향후 문제에 대한 AI 예측

get_deployments

자동 인시던트 상관관계(GitHub/GitLab)가 포함된 최근 배포

run_root_cause_analysis

배포 상관관계와 함께 다중 모델 분석(Claude, GPT)을 사용한 AI 기반 RCA

is_safe_to_deploy

상태 점수, 예측, 활성 인시던트를 기반으로 한 CI/CD 배포 안전성 검사

get_executive_summary

스탠드업, 주간 보고서 또는 상태 업데이트를 위한 인프라 상태 요약

인증

API 키는 app.uptimebolt.io/settings/api-keys에서 받으세요.

  • stdio 모드: UPTIMEBOLT_API_KEY 환경 변수 설정

  • HTTP 모드: 각 요청에 x-api-key 헤더 전달(시작 키 불필요)

CI/CD 통합

배포 파이프라인에서 is_safe_to_deploy를 게이트로 사용하세요:

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" }
    }
  }'

응답에는 위험 수준(low, medium, high), 활성 문제, 권장 사항(proceed, proceed_with_caution, wait_and_monitor)이 포함됩니다.

구성

변수

설명

기본값

UPTIMEBOLT_API_KEY

UptimeBolt API 키

(stdio에 필요)

UPTIMEBOLT_API_URL

UptimeBolt API 기본 URL

http://localhost:3200

MCP_HTTP_PORT

HTTP 서버 포트

3100

NODE_ENV

환경(production은 콘솔 로그 비활성화)

development

LOG_LEVEL

로그 수준(error, warn, info, debug)

debug(개발) / info(운영)

개발

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

UptimeBolt 소개

UptimeBolt는 DevOps 팀과 SRE를 위한 AI 우선 SaaS 모니터링 플랫폼입니다. 주요 기능:

  • 연쇄 실패 예측 — 가상 분석, 다운타임 비용 추정, 사전 완화 조치를 포함한 종속성 그래프

  • 배포 상관관계 + RCA 2.0 — GitHub/GitLab 배포를 인시던트와 자동으로 연관시키고, 책임이 있는 커밋과 파일을 식별

  • AI 코파일럿 — 실시간 인프라 컨텍스트를 제공하는 대화형 어시스턴트

  • 8가지 모니터 유형 — HTTP, TCP, DNS, 데이터베이스, 이메일, 합성, 푸시, 핑

CLM Cloud Solutions 소개

CLM Cloud Solutions S.L.는 스페인 마드리드에 기반을 둔 기술 회사로, 엔지니어링 팀이 자신감, 속도, 보안을 갖추고 운영할 수 있도록 SaaS 제품을 구축하고 있습니다.

라이선스

MIT

A
license - permissive license
-
quality - not tested
D
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • A
    license
    B
    quality
    D
    maintenance
    An 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.
    43
    MIT
  • F
    license
    -
    quality
    D
    maintenance
    Enables AI-driven incident response by connecting Claude to monitoring tools like Prometheus, Grafana, Loki, PagerDuty, and Slack for automated investigation and runbook generation.
    9
  • F
    license
    -
    quality
    D
    maintenance
    MCP server exposing portfolio AI tools including semantic search, evaluation framework, and prompt management, enabling natural language interaction with these services via Claude Desktop.

View all related MCP servers

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.

View all MCP Connectors

Latest Blog Posts

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