MCP Catalogs
Home

mcp-server-prometheus vs everything

Side-by-side comparison to help you pick between these two MCP servers.

mcp-server-prometheus
by loglmhq
everything
by modelcontextprotocol
Stars★ 17★ 85,748
30d uses
Score3477
Official
Categories
MonitoringDeveloper ToolsOps & Infra
Developer ToolsAI / LLM ToolsOther
LanguageJavaScriptTypeScript
Last commit17 mo agothis month

mcp-server-prometheus · Summary

MCP server that bridges Claude with Prometheus metrics and data.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

mcp-server-prometheus · Use cases

  • Monitoring system performance by querying Prometheus metrics directly from Claude
  • Automating alert and report generation based on metric thresholds
  • Troubleshooting infrastructure issues through conversational metric analysis

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

mcp-server-prometheus · Install

Installation

  1. Install dependencies:
npm install
  1. Build the server:
npm run build
  1. Configure for Claude Desktop:

On MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json On Windows: %APPDATA%/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "mcp-server-prometheus": {
      "command": "/path/to/mcp-server-prometheus/build/index.js",
      "env": {
        "PROMETHEUS_URL": "http://your-prometheus-instance:9090"
      }
    }
  }
}

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.