.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/pab1it0/prometheus-mcp-server
home/mcp-servers/pab1it0/prometheus-mcp-server
pab1it0 avatar

prometheus-mcp-server

bypab1it0· 2 MCP servers

Installs

13k

Stars

508

Forks

98

Category

DevOps & CI/CD

View on GitHub

TL;DR

Give AI assistants the power to query your Prometheus metrics.

How to install prometheus-mcp-server?

pab1it0/prometheus-mcp-server
$git clone https://github.com/pab1it0/prometheus-mcp-server

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install prometheus-mcp-server by running `git clone https://github.com/pab1it0/prometheus-mcp-server`, then use it for the current task and follow its documentation at https://github.com/pab1it0/prometheus-mcp-server.

Files · 1

View on GitHub
README.md
1# Prometheus MCP Server
2 
3[![GitHub Container Registry](https://img.shields.io/badge/ghcr.io-pab1it0%2Fprometheus--mcp--server-blue?logo=docker)](https://github.com/users/pab1it0/packages/container/package/prometheus-mcp-server)
4[![Helm Chart](https://img.shields.io/badge/helm%20chart-ghcr.io-blue?logo=helm)](https://github.com/pab1it0/prometheus-mcp-server/pkgs/container/charts%2Fprometheus-mcp-server)
5[![GitHub Release](https://img.shields.io/github/v/release/pab1it0/prometheus-mcp-server)](https://github.com/pab1it0/prometheus-mcp-server/releases)
6[![Codecov](https://codecov.io/gh/pab1it0/prometheus-mcp-server/branch/main/graph/badge.svg)](https://codecov.io/gh/pab1it0/prometheus-mcp-server)
7![Python](https://img.shields.io/badge/python-3.10%2B-blue)
8[![License](https://img.shields.io/github/license/pab1it0/prometheus-mcp-server)](https://github.com/pab1it0/prometheus-mcp-server/blob/main/LICENSE)
9 
10Give AI assistants the power to query your Prometheus metrics.
11 
12A [Model Context Protocol][mcp] (MCP) server that provides access to your Prometheus metrics and queries through standardized MCP interfaces, allowing AI assistants to execute PromQL queries and analyze your metrics data.
13 
14[mcp]: https://modelcontextprotocol.io
15 
16## Getting Started
17 
18### Prerequisites
19 
20- Prometheus server accessible from your environment
21- MCP-compatible client (Claude Desktop, VS Code, Cursor, Windsurf, etc.)
22 
23### Installation Methods
24 
25<details>
26<summary><b>Claude Desktop</b></summary>
27 
28Add to your Claude Desktop configuration:
29 
30```json
31{
32 "mcpServers": {
33 "prometheus": {
34 "command": "docker",
35 "args": [
36 "run",
37 "-i",
38 "--rm",
39 "-e",
40 "PROMETHEUS_URL",
41 "ghcr.io/pab1it0/prometheus-mcp-server:latest"
42 ],
43 "env": {
44 "PROMETHEUS_URL": "<your-prometheus-url>"
45 }
46 }
47 }
48}
49```
50</details>
51 
52<details>
53<summary><b>Claude Code</b></summary>
54 
55Install via the Claude Code CLI:
56 
57```bash
58claude mcp add prometheus --env PROMETHEUS_URL=http://your-prometheus:9090 -- docker run -i --rm -e PROMETHEUS_URL ghcr.io/pab1it0/prometheus-mcp-server:latest
59```
60</details>
61 
62<details>
63<summary><b>VS Code / Cursor / Windsurf</b></summary>
64 
65Add to your MCP settings in the respective IDE:
66 
67```json
68{
69 "prometheus": {
70 "command": "docker",
71 "args": [
72 "run",
73 "-i",
74 "--rm",
75 "-e",
76 "PROMETHEUS_URL",
77 "ghcr.io/pab1it0/prometheus-mcp-server:latest"
78 ],
79 "env": {
80 "PROMETHEUS_URL": "<your-prometheus-url>"
81 }
82 }
83}
84```
85</details>
86 
87<details>
88<summary><b>Docker Desktop</b></summary>
89 
90The easiest way to run the Prometheus MCP server is through Docker Desktop:
91 
92<a href="https://hub.docker.com/open-desktop?url=https://open.docker.com/dashboard/mcp/servers/id/prometheus/config?enable=true">
93 <img src="https://img.shields.io/badge/+%20Add%20to-Docker%20Desktop-2496ED?style=for-the-badge&logo=docker&logoColor=white" alt="Add to Docker Desktop" />
94</a>
95 
961. **Via MCP Catalog**: Visit the [Prometheus MCP Server on Docker Hub](https://hub.docker.com/mcp/server/prometheus/overview) and click the button above
97 
982. **Via MCP Toolkit**: Use Docker Desktop's MCP Toolkit extension to discover and install the server
99 
1003. Configure your connection using environment variables (see Configuration Options below)
101 
102</details>
103 
104<details>
105<summary><b>Manual Docker Setup</b></summary>
106 
107Run directly with Docker:
108 
109```bash
110# With environment variables
111docker run -i --rm \
112 -e PROMETHEUS_URL="http://your-prometheus:9090" \
113 ghcr.io/pab1it0/prometheus-mcp-server:latest
114 
115# With authentication
116docker run -i --rm \
117 -e PROMETHEUS_URL="http://your-prometheus:9090" \
118 -e PROMETHEUS_USERNAME="admin" \
119 -e PROMETHEUS_PASSWORD="password" \
120 ghcr.io/pab1it0/prometheus-mcp-server:latest
121```
122</details>
123 
124<details>
125<summary><b>Helm Chart (Kubernetes)</b></summary>
126 
127Deploy to Kubernetes using the Helm chart from the OCI registry:
128 
129```bash
130helm install prometheus-mcp-server \
131 oci://ghcr.io/pab1it0/char

Preview

pab1it0/prometheus-mcp-serverpab1it0/prometheus-mcp-server

# Prometheus MCP Server

[![GitHub Container Registry](https://img.shields.io/badge/ghcr.io-pab1it0%2Fprometheus--mcp--server-blue?logo=docker)](https://github.com/users/pab1it0/package

[![Helm Chart](https://img.shields.io/badge/helm%20chart-ghcr.io-blue?logo=helm)](https://github.com/pab1it0/prometheus-mcp-server/pkgs/container/charts%2Fprome

[![GitHub Release](https://img.shields.io/github/v/release/pab1it0/prometheus-mcp-server)](https://github.com/pab1it0/prometheus-mcp-server/releases)

Repopab1it0/prometheus-mcp-server
TypeMCP Servers
CategoryDevOps & CI/CD
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

MCPaidevops

Related

6 picks
Type
  1. circleci-public avatarmcp-server-circleciA Model Context Protocol (MCP) server implementation for CircleCI, enabling natural language interactions with CircleCI functionality through MCP-enabled clientsMCP ServersJul 2026141k86
  2. argoproj-labs avatarmcp-for-argocdArgo CD MCP ServerMCP ServersJul 202690k547
  3. flux159 avatarmcp-server-kubernetesMCP server for interacting with Kubernetes clusters via kubectlMCP ServersJul 202664k1.5k
  4. hookdeck avatarhookdeck-cliCLI for Hookdeck: forward webhooks to localhost (ngrok alternative), manage and query Event Gateway resources (sources, connections, destinations, events), run the MCP server for AI agents. Free for dev.MCP ServersJul 202647k358
  5. heroku avatarheroku-mcp-serverHeroku Platform MCP ServerMCP ServersJul 202626k80
  6. tiberriver256 avatarmcp-server-azure-devopsAzure DevOps reference server for the Model Context Protocol (MCP)MCP ServersJul 202624k381