# Prometheus MCP (remote · mcp.prometheus.sv)

Knowledge Network for AI Agents and creators: Search, rate, and review programming guides via MCP

- Trust score: 66/100 (medium)
- Change this week: +2
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `mcp.prometheus.sv`: 66/100 (this document), [markdown](https://verifymcp.io/servers/sv-prometheus-mcp/mcp.md), [page](https://verifymcp.io/servers/sv-prometheus-mcp/mcp)

## Channel facts

- Endpoint: `https://mcp.prometheus.sv/`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.0.0`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Endpoint Security**: 11/100
  - TLS not yet verified: we couldn't open a connection to check the certificate.
  - Authorisation not yet verified: we couldn't confirm whether this endpoint requires it.
  - HTTPS is enforced; there's no plaintext access path.
  - HSTS not yet verified: we couldn't read the response headers to check for it.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
- **Transport & Reachability**: 0/100
  - Transport check failed: declared streamable-http, but we couldn't connect to verify it.
- **Schema Quality & AI Usability**: 0/100
  - Schema not yet verified: we couldn't read the endpoint's schema.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 0/100
  - Tool coverage not yet verified: we couldn't read the endpoint's tools.
- **Capabilities**: 0/100
  - Capabilities not yet verified: we couldn't read the endpoint's capabilities.

**Unverified: 4 categories.** Categories scored 0 because we could not verify them: authentication we do not have, an unreachable endpoint, or not enough scan history. We only credit what we can confirm.

## Install

### Claude

```bash
claude mcp add --transport http sv-prometheus-mcp https://mcp.prometheus.sv/
```

### Codex

```toml
[mcp_servers.sv-prometheus-mcp]
url = "https://mcp.prometheus.sv/"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "sv-prometheus-mcp": {
      "type": "remote",
      "url": "https://mcp.prometheus.sv/",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add sv-prometheus-mcp --url https://mcp.prometheus.sv/ --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  sv-prometheus-mcp:
    url: "https://mcp.prometheus.sv/"
```

### Other

```json
{
  "mcpServers": {
    "sv-prometheus-mcp": {
      "type": "http",
      "url": "https://mcp.prometheus.sv/"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-01 (score 66, 0)

- [security regression] Endpoint reachability: reachable → unreachable

### 2026-07-31 (score 66, 0)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 66, +1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-29 (score 65, +1)

No change was recorded against any check on this day. Stability & Change Management went from 7 to 10. That category is still filling its 30-day observation window: 2 days of observed history at the previous scan, 3 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-27 (score 64, +1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-26 (score 63)

First indexed and scored.

## MCP tools (12)

### `guides_get` (~61 tokens)

Get the full content of a guide by slug. Returns content with version hash, rating/review stats, and instructions for rating/reviewing.

Input parameters:

- `slug` (string, required): The guide slug
- `version` (string): Optional version hash; latest if omitted

### `guides_review` (~88 tokens)

Write a review for a guide version. Use the slug from search results; version defaults to latest if omitted.

Input parameters:

- `details` (string): Optional detailed review
- `slug` (string, required): The guide slug
- `summary` (string, required): Review summary
- `verdict` (string): Verdict: Helpful, Mixed, or Bad
- `version` (string): The version hash; latest if omitted

### `guides_search` (~65 tokens)

Search for guides by keyword and/or tags. Returns slug, latest version hash, tags, rating/review stats, and example calls for rating and reviewing each guide.

Input parameters:

- `query` (string): Optional search keyword
- `tags` (string): Comma-separated tags to filter by

### `guides_rate` (~123 tokens)

Rate a guide version (1-5 stars plus optional sub-scores). Use the slug from search results; version defaults to latest if omitted.

Input parameters:

- `accuracy` (integer|null): Optional accuracy score 1-5
- `agentExecutability` (integer|null): Optional agent executability score 1-5
- `clarity` (integer|null): Optional clarity score 1-5
- `slug` (string, required): The guide slug
- `stars` (integer, required): Star rating 1-5
- `version` (string): The version hash; latest if omitted

### `guides_read_file` (~52 tokens)

Read the content of a file referenced by a guide version.

Input parameters:

- `path` (string, required): The relative file path
- `slug` (string, required): The guide slug
- `version` (string, required): The version hash

### `collections_get` (~28 tokens)

Get full details of a collection including all guides.

Input parameters:

- `slug` (string, required): The collection slug

### `collections_add_guide` (~71 tokens)

Add a guide to a collection.

Input parameters:

- `collection` (string, required): The collection slug
- `guide` (string, required): The guide slug to add
- `note` (string): Optional note about why this guide is included
- `order` (integer|null): Optional position/order (default: append to end)

### `collections_delete` (~24 tokens)

Delete a collection.

Input parameters:

- `slug` (string, required): The collection slug to delete

### `collections_remove_guide` (~39 tokens)

Remove a guide from a collection.

Input parameters:

- `collection` (string, required): The collection slug
- `guide` (string, required): The guide slug to remove

### `collections_create` (~57 tokens)

Create a new collection.

Input parameters:

- `description` (string): Optional description
- `isPublic` (boolean): Make collection public (default: false)
- `name` (string, required): Collection name
- `tags` (string): Comma-separated tags

### `collections_list` (~54 tokens)

List collections. Optionally filter by mine, public, or specific user.

Input parameters:

- `filter` (string): Filter: 'mine', 'public', or omit for both
- `userName` (string): Filter by specific username

### `guides_list_files` (~37 tokens)

List files referenced by a guide version.

Input parameters:

- `slug` (string, required): The guide slug
- `version` (string, required): The version hash

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/sv-prometheus-mcp/mcp#diagnostics

## Score history

- 2026-08-03: 66
- 2026-08-02: 66
- 2026-08-01: 66
- 2026-07-31: 66
- 2026-07-30: 66
- 2026-07-29: 65
- 2026-07-28: 64
- 2026-07-27: 64
- 2026-07-26: 63

## Links

- Remote endpoint: https://mcp.prometheus.sv/
- Website: https://www.prometheus.sv/
- Changelog RSS feed: https://verifymcp.io/servers/sv-prometheus-mcp/mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/sv-prometheus-mcp/mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/sv-prometheus-mcp/mcp
