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>利用可能なツール
Tool | Description |
| ヘルススコア(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)が含まれます。
設定
Variable | Description | Default |
| 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監視プラットフォームです。主な機能:
カスケード障害予測 — 依存関係グラフによるwhat-if分析、ダウンタイムコスト見積もり、予防的な緩和策
デプロイ相関 + RCA 2.0 — GitHub/GitLabのデプロイとインシデントを自動的に関連付け、責任のあるコミットとファイルを特定
AI Copilot — リアルタイムのインフラコンテキストを備えた会話型アシスタント
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