Skip to content

Commit ee18fcd

Browse files
authored
Add Prometheus MCP Server to registry (#163)
* Add Prometheus MCP Server to registry This commit adds the Prometheus MCP Server to the official Docker MCP Registry. The server provides: - PromQL query execution against Prometheus - Metrics discovery and exploration - Authentication support (basic auth and bearer token) - Multi-tenant support for setups like Cortex, Mimir, or Thanos * Update prometheus server config
1 parent a512280 commit ee18fcd

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

servers/prometheus/server.yaml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: prometheus
2+
image: ghcr.io/pab1it0/prometheus-mcp-server
3+
type: server
4+
meta:
5+
category: monitoring
6+
tags:
7+
- ai
8+
- devops
9+
- llm
10+
- model-context-protocol
11+
- prometheus
12+
- metrics
13+
- monitoring
14+
- observability
15+
about:
16+
title: Prometheus
17+
description: A Model Context Protocol (MCP) server that enables AI assistants to query and analyze Prometheus metrics through standardized interfaces. Connect to your Prometheus instance to retrieve metrics, perform queries, and gain insights into your system's performance and health.
18+
icon: https://upload.wikimedia.org/wikipedia/commons/3/38/Prometheus_software_logo.svg
19+
source:
20+
project: https://github.com/pab1it0/prometheus-mcp-server
21+
config:
22+
description: Configure the connection to your Prometheus server
23+
env:
24+
- name: PROMETHEUS_URL
25+
example: http://host.docker.internal:9090
26+
value: '{{prometheus.prometheus_url}}'
27+
parameters:
28+
type: object
29+
properties:
30+
prometheus_url:
31+
type: string
32+
description: The URL of your Prometheus server
33+
required:
34+
- prometheus_url

0 commit comments

Comments
 (0)