prometheus-mcp-server
Provides tools for querying Prometheus metrics, including instant and range queries, series discovery, label exploration, metadata access, target information, alerts, rules, and server status.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@prometheus-mcp-serverwhat alerts are firing right now?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
prometheus-mcp-server

A Model Context Protocol (MCP) server for interacting with Prometheus metrics and data.
This is a TypeScript-based MCP server that implements a Prometheus API interface. It provides a bridge between Claude and your Prometheus server through the Model Context Protocol (MCP).
Features
Instant Queries: Execute PromQL queries at a specific time
Range Queries: Execute PromQL queries over a time period
Series Discovery: Find series by label matchers
Label Exploration: Get label names and values
Metadata Access: Get metadata for metrics
Target Information: Get information about scrape targets
Alerts & Rules: Get information about alerts and recording rules
Status Information: Get Prometheus server status information
Related MCP server: prometheus-mcp
Installation
# Install globally
npm install -g prometheus-mcp-server
# Or install locally
npm install prometheus-mcp-server
# Or use npx to run without installation
npx prometheus-mcp-serverUsage with Claude
To use with Claude Desktop, add the server config:
On MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
On Windows: %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"prometheus-mcp-server": {
"command": "/path/to/prometheus-mcp-server/build/index.js",
"env": {
"PROMETHEUS_BASE_URL": "http://your-prometheus-instance:9090"
}
}
}
}Using with npx
You can also use npx in your Claude Desktop configuration:
{
"mcpServers": {
"prometheus-mcp-server": {
"command": "npx prometheus-mcp-server",
"env": {
"PROMETHEUS_BASE_URL": "http://your-prometheus-instance:9090"
}
}
}
}Configuration
By default, the client connects to a Prometheus server running at http://localhost:9090. You can configure the Prometheus server URL by setting the PROMETHEUS_BASE_URL environment variable:
# Example: Connect to a different Prometheus server
PROMETHEUS_BASE_URL=http://my-prometheus-server:9090 prometheus-mcp-serverThis allows you to point the client to any Prometheus instance without modifying the source code.
Available Functions
The server provides the following functions:
mcp__instant_query: Execute an instant PromQL querymcp__range_query: Execute a range PromQL query over a time periodmcp__get_series: Find series by label matchersmcp__get_label_values: Get values for a specific labelmcp__get_metadata: Get metadata for metricsmcp__get_targets: Get information about scrape targetsmcp__get_alerts: Get information about alertsmcp__get_rules: Get information about recording and alerting rulesmcp__get_status: Get status information about the Prometheus server
Development
# Install dependencies
npm install
# Build the project
npm run build
# Start the server
npm start
# Debug
npm run dev:debugDebugging
Since MCP servers communicate over stdio, debugging can be challenging. You can use the following npm scripts for debugging:
# Inspect mode
npm run inspect
# Inspect with breakpoints
npm run inspect-debugLicense
ISC
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
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.
Latest Blog Posts
- 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/weetime/prometheus-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server