- Explore MCP Servers
- alertmanager-mcp
Alertmanager Mcp
What is Alertmanager Mcp
alertmanager-mcp is a Model Context Protocol (MCP) server that integrates with Prometheus Alertmanager, serving as a bridge between Claude AI and Alertmanager to manage alerts through a standardized interface.
Use cases
Use cases include fetching current alerts, filtering alerts based on criteria, managing silences for specific alerts, and retrieving detailed information about alerts.
How to use
To use alertmanager-mcp, install it via npm and configure Claude for Desktop to connect to the MCP server. You can then interact with Alertmanager using natural language commands.
Key features
Key features include alert retrieval with filtering, detailed alert information, silence management tools, and organized alert grouping.
Where to use
alertmanager-mcp is suitable for environments utilizing Prometheus Alertmanager for monitoring and alerting, particularly in DevOps and IT operations.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Overview
What is Alertmanager Mcp
alertmanager-mcp is a Model Context Protocol (MCP) server that integrates with Prometheus Alertmanager, serving as a bridge between Claude AI and Alertmanager to manage alerts through a standardized interface.
Use cases
Use cases include fetching current alerts, filtering alerts based on criteria, managing silences for specific alerts, and retrieving detailed information about alerts.
How to use
To use alertmanager-mcp, install it via npm and configure Claude for Desktop to connect to the MCP server. You can then interact with Alertmanager using natural language commands.
Key features
Key features include alert retrieval with filtering, detailed alert information, silence management tools, and organized alert grouping.
Where to use
alertmanager-mcp is suitable for environments utilizing Prometheus Alertmanager for monitoring and alerting, particularly in DevOps and IT operations.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Content
Prometheus Alertmanager MCP Server
This project implements a Model Context Protocol (MCP) server that integrates with Prometheus Alertmanager. It serves as a bridge between Claude AI and Alertmanager, allowing Claude to interact with and manage alerts through a standardized interface.
Core Features
-
Alert Retrieval: Fetches and formats current alerts from Alertmanager with optional filtering capabilities.
-
Alert Details: Provides detailed information about specific alerts when referenced by their fingerprint.
-
Silence Management: Offers tools to create, list, and delete silences that suppress notifications for specific alerts.
-
Alert Grouping: Retrieves alert groups as organized by Alertmanager.
Technical Implementation
- Built using TypeScript and the MCP SDK
- Communicates with Alertmanager’s HTTP API (v2)
- Runs as a stdio-based process compatible with Claude for Desktop
- Implements proper error handling and timeout management
- Provides strongly-typed interfaces for alert and silence data
Installation
Prerequisites
- Access to a running Prometheus Alertmanager instance
- For Claude for Desktop: Node.js (v18 or newer) installed on your system
Setup
The package is available on npm and can be used directly with npx:
npx alertmanager-mcp
For global installation:
npm install -g alertmanager-mcp alertmanager-mcp
Usage with Claude for Desktop
- Configure Claude for Desktop to use the MCP server by editing the configuration file:
{
"mcpServers": {
"alertmanager": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--network=host",
"-e",
"ALERTMANAGER_URL=http://your-alertmanager-url:9093",
"ghcr.io/kaznak/alertmanager-mcp:latest"
],
"env": {}
}
}
}
-
Restart Claude for Desktop to load the new configuration.
-
You can now ask Claude to interact with Alertmanager using natural language:
- “Show me current alerts”
- “Filter alerts related to CPU issues”
- “Get details for this alert”
- “Create a silence for this alert for the next 2 hours”
Available Tools
get-alerts
Retrieves a list of alerts with optional filtering.
Parameters:
filter: (optional) Filtering query (e.g.,alertname=~'.*CPU.*')silenced: (optional) Include silenced alertsinhibited: (optional) Include inhibited alertsactive: (optional) Include active alerts (default: true)
get-alert-details
Gets detailed information about a specific alert.
Parameters:
fingerprint: Alert fingerprint
create-silence
Creates a silence for alerts matching specified criteria.
Parameters:
matchers: List of matchers for alertsstartsAt: (optional) Silence start time (ISO8601 format, default is current time)endsAt: Silence end time (ISO8601 format)createdBy: Username who created the silencecomment: Reason or explanation for the silence
get-silences
Retrieves a list of silences with optional filtering.
Parameters:
filter: (optional) Filtering query (e.g.,createdBy=~'.*admin.*')
delete-silence
Deletes a silence by ID.
Parameters:
silenceId: ID of the silence to delete
get-alert-groups
Gets alert groups with optional filtering.
Parameters:
active: (optional) Include active alerts (default: true)silenced: (optional) Include silenced alertsinhibited: (optional) Include inhibited alerts
Extending the Server
This MCP server can be extended with additional features such as:
- Alert trend analysis
- Automatic response suggestions
- Integration with incident management systems
- Custom dashboards for specific alert types
Resources
Dev Tools Supporting MCP
The following are the main code editors that support the Model Context Protocol. Click the link to visit the official website for more information.










