PluginBench
MCP Server

io.github.mshegolev/jaeger-mcp MCP Server

io.github.mshegolev/jaeger-mcp

What is the io.github.mshegolev/jaeger-mcp MCP server?

Jaeger MCP — search traces, inspect spans, map service dependencies (read-only).

How to install io.github.mshegolev/jaeger-mcp

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • JAEGER_URL
    required

    Jaeger query service URL, e.g. https://jaeger.example.com

  • JAEGER_TOKEN
    secret

    Bearer token for authentication. Takes priority over Basic auth.

  • JAEGER_USERNAME

    HTTP Basic auth username. Used only when JAEGER_TOKEN is not set.

  • JAEGER_PASSWORD
    secret

    HTTP Basic auth password.

  • JAEGER_SSL_VERIFY

    Verify SSL certificates (true/false). Set to 'false' for self-signed certs.

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "jaeger-mcp": {
      "command": "uvx",
      "args": [
        "jaeger-mcp"
      ],
      "env": {
        "JAEGER_URL": "<YOUR_JAEGER_URL>",
        "JAEGER_TOKEN": "<YOUR_JAEGER_TOKEN>",
        "JAEGER_USERNAME": "<YOUR_JAEGER_USERNAME>",
        "JAEGER_PASSWORD": "<YOUR_JAEGER_PASSWORD>",
        "JAEGER_SSL_VERIFY": "<YOUR_JAEGER_SSL_VERIFY>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "jaeger-mcp": {
      "command": "uvx",
      "args": [
        "jaeger-mcp"
      ],
      "env": {
        "JAEGER_URL": "<YOUR_JAEGER_URL>",
        "JAEGER_TOKEN": "<YOUR_JAEGER_TOKEN>",
        "JAEGER_USERNAME": "<YOUR_JAEGER_USERNAME>",
        "JAEGER_PASSWORD": "<YOUR_JAEGER_PASSWORD>",
        "JAEGER_SSL_VERIFY": "<YOUR_JAEGER_SSL_VERIFY>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "jaeger-mcp": {
      "command": "uvx",
      "args": [
        "jaeger-mcp"
      ],
      "env": {
        "JAEGER_URL": "<YOUR_JAEGER_URL>",
        "JAEGER_TOKEN": "<YOUR_JAEGER_TOKEN>",
        "JAEGER_USERNAME": "<YOUR_JAEGER_USERNAME>",
        "JAEGER_PASSWORD": "<YOUR_JAEGER_PASSWORD>",
        "JAEGER_SSL_VERIFY": "<YOUR_JAEGER_SSL_VERIFY>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "jaeger-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "jaeger-mcp"
      ],
      "env": {
        "JAEGER_URL": "<YOUR_JAEGER_URL>",
        "JAEGER_TOKEN": "<YOUR_JAEGER_TOKEN>",
        "JAEGER_USERNAME": "<YOUR_JAEGER_USERNAME>",
        "JAEGER_PASSWORD": "<YOUR_JAEGER_PASSWORD>",
        "JAEGER_SSL_VERIFY": "<YOUR_JAEGER_SSL_VERIFY>"
      }
    }
  }
}
Claude Code
claude mcp add jaeger-mcp --env JAEGER_URL=<YOUR_JAEGER_URL> --env JAEGER_TOKEN=<YOUR_JAEGER_TOKEN> --env JAEGER_USERNAME=<YOUR_JAEGER_USERNAME> --env JAEGER_PASSWORD=<YOUR_JAEGER_PASSWORD> --env JAEGER_SSL_VERIFY=<YOUR_JAEGER_SSL_VERIFY> -- uvx jaeger-mcp

Related MCP servers

Allure TestOps MCP — projects, launches, test cases, test results via REST API.

View repository →

GitLab CI/CD MCP — pipelines, jobs, schedules, MRs, files. Any GitLab (SaaS or self-hosted).

View repository →

Harbor Registry MCP — projects, repos, artifacts, storage reports, cleanup (with dry-run).

View repository →

Kibana/Elasticsearch MCP — log search, aggregations, index discovery, dashboards.

View repository →

Prometheus MCP — query metrics, inspect alerts, and explore scrape targets (read-only).

View repository →

SonarQube MCP — projects, metrics, quality gate, issues, worst-metric ranking.

View repository →