Jaeger MCP Server

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

Local serverstdioPython

What is the Jaeger MCP server?

If you already use Jaeger, the jaeger mcp server is the piece that lets your assistant work with it directly. Jaeger MCP — search traces, inspect spans, map service dependencies (read-only).

What the server does

The existing Jaeger integrations require a running UI or custom scripts. This server:

  • Speaks the standard Model Context Protocol over stdio — works with Claude Desktop, Claude Code, Cursor, and any MCP client
  • Is read-only: all 12 tools carry readOnlyHint: true — zero risk of modifying trace data
  • Returns dual-channel output: structured JSON (structuredContent) for programmatic use + Markdown (content) for human-readable display
  • Has actionable error messages that name the exact env var to fix and suggest a next step
  • Supports Bearer token, HTTP Basic auth, or no auth (common for internal deployments)
  • Includes OpenAPI specification documenting the underlying Jaeger Query API (openapi.yaml)

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • jaeger_list_services — GET /api/services
  • jaeger_list_operations — GET /api/services/{service}/operations
  • jaeger_search_traces — GET /api/traces
  • jaeger_get_trace — GET /api/traces/{traceID}
  • jaeger_get_dependencies — GET /api/dependencies
  • jaeger_compare_traces — GET /api/traces/{traceID} ×2
  • jaeger_span_statistics — GET /api/traces
  • jaeger_critical_path — GET /api/traces/{traceID}
  • jaeger_compare_windows — GET /api/traces ×2
  • jaeger_detect_anomalies — GET /api/traces ×2
  • jaeger_predict_degradation — GET /api/traces
  • jaeger_forecast_capacity — GET /api/traces

Credentials and setup notes

Configuration is passed through the environment: JAEGER_URL, JAEGER_TOKEN. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Installation

Installation goes through your MCP client rather than a global install: point it at jaeger-mcp on PyPI and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

Where it fits

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Jaeger's toolset — jaeger_list_services, jaeger_list_operations, jaeger_search_traces and 9 more — is a fair guide to whether it matches your workflow. It is maintained by mshegolev; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 12 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Jaeger.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
jaeger_list_servicesGET /api/services
jaeger_list_operationsGET /api/services/{service}/operations
jaeger_search_tracesGET /api/traces
jaeger_get_traceGET /api/traces/{traceID}
jaeger_get_dependenciesGET /api/dependencies
jaeger_compare_tracesGET /api/traces/{traceID} ×2
jaeger_span_statisticsGET /api/traces
jaeger_critical_pathGET /api/traces/{traceID}
jaeger_compare_windowsGET /api/traces ×2
jaeger_detect_anomaliesGET /api/traces ×2
jaeger_predict_degradationGET /api/traces
jaeger_forecast_capacityGET /api/traces

How to install the Jaeger MCP server

{
  "mcpServers": {
    "jaeger": {
      "command": "jaeger-mcp",
      "env": {
        "JAEGER_URL": "https://jaeger.example.com",
        "JAEGER_TOKEN": "your-token-here"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
JAEGER_URLEndpoint or connection string the server talks to.Yes
JAEGER_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use Jaeger to jaeger list services.
  • Use Jaeger to jaeger list operations.
  • Use Jaeger to jaeger search traces.

Frequently asked questions

It connects Jaeger to MCP-compatible AI assistants such as Claude and Cursor, exposing 12 tools (jaeger_list_services, jaeger_list_operations, jaeger_search_traces, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Jaeger directly.