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-serverClaude 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-serverimport { TOOLS, HANDLERS } from "@uptimebolt/mcp-server";
// TOOLS — MCP tool definitions (10 tools)
// HANDLERS — tool handler functions: (args, context?) => Promise<result>사용 가능한 도구
도구 | 설명 |
| 상태 점수(0-100), 모니터 세부 현황, 활성 인시던트를 포함한 비즈니스 서비스의 상태 |
| 운영 상태, 응답 시간, 가동률 백분율을 포함한 모든 모니터 목록 |
| 응답 시간 추세와 활성 예측을 포함한 특정 모니터의 상세 상태 |
| 응답 시간 통계(평균, p95, p99), 가동률 백분율, 오류 세부 분석 |
| 선택적 AI 근본 원인 분석 세부 정보가 포함된 활성 및 해결된 인시던트 |
| 신뢰 수준과 예상 영향을 포함한 향후 문제에 대한 AI 예측 |
| 자동 인시던트 상관관계(GitHub/GitLab)가 포함된 최근 배포 |
| 배포 상관관계와 함께 다중 모델 분석(Claude, GPT)을 사용한 AI 기반 RCA |
| 상태 점수, 예측, 활성 인시던트를 기반으로 한 CI/CD 배포 안전성 검사 |
| 스탠드업, 주간 보고서 또는 상태 업데이트를 위한 인프라 상태 요약 |
인증
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 키 | (stdio에 필요) |
| UptimeBolt API 기본 URL |
|
| HTTP 서버 포트 |
|
| 환경( |
|
| 로그 수준(error, warn, info, debug) |
|
개발
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 emittingUptimeBolt 소개
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
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