Read-only MCP server for searching, analyzing, and comparing Jaeger distributed traces.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent โ or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag โ we're steadily working through the catalog.
๐ก Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Inspect callable tools, capabilities, and parameters exposed to AI agents by Jaeger MCP.
jaeger_list_servicesList all instrumented services
jaeger_list_operationsList operation names for a service
jaeger_search_tracesSearch traces with rich filters
jaeger_get_traceFull trace detail with span tree
jaeger_get_dependenciesService-to-service call graph
jaeger_compare_tracesStructural diff between two traces
MCP server for Jaeger distributed tracing. Give Claude (or any MCP-capable agent) read access to your trace data โ search traces, inspect spans, compare traces, compute span statistics, map service dependencies, predict performance issues, and forecast capacity needs โ without leaving the conversation.
The existing Jaeger integrations require a running UI or custom scripts. This server:
readOnlyHint: true โ zero risk of modifying trace data.structuredContent) for programmatic use + Markdown (content) for human-readable display.openapi.yaml).| Tool | Endpoint | Description |
|---|---|---|
jaeger_list_services | GET /api/services | List all instrumented services |
jaeger_list_operations | GET /api/services/{service}/operations | List operation names for a service |
jaeger_search_traces | GET /api/traces | Search traces with rich filters |
jaeger_get_trace | GET /api/traces/{traceID} | Full trace detail with span tree |
jaeger_get_dependencies | GET /api/dependencies | Service-to-service call graph |
jaeger_compare_traces | GET /api/traces/{traceID} ร2 | Structural diff between two traces |
jaeger_span_statistics | GET /api/traces | Per-operation latency and error stats |
jaeger_critical_path | GET /api/traces/{traceID} | Longest-duration span chain and bottleneck ranking |
jaeger_compare_windows | GET /api/traces ร2 | Aggregate trace behavior diff between two time periods |
jaeger_detect_anomalies | GET /api/traces ร2 | Statistical latency/error-rate spike detection per operation |
jaeger_predict_degradation | GET /api/traces | Predict performance degradation 2-24 hours in advance |
jaeger_forecast_capacity | GET /api/traces | Forecast throughput demands and resource requirements |
jaeger_find_test_traces | GET /api/traces | Correlate a test run to its traces by tag query (Allure/pytest/custom) |
jaeger_regression_diff | GET /api/traces ร2 | Classify per-operation regressions between two time windows |
jaeger_test_profile | GET /api/traces | Per-operation latency hotspots for a tagged test run |
Or run directly without installing:
All configuration is via environment variables:
| Variable | Required | Default | Description |
|---|---|---|---|
JAEGER_URL | Yes | โ | Jaeger query service URL, e.g. https://jaeger.example.com |
JAEGER_TOKEN | No | โ | Bearer token (takes precedence over Basic auth) |
JAEGER_USERNAME | No | โ | HTTP Basic auth username |
JAEGER_PASSWORD | No | โ | HTTP Basic auth password |
JAEGER_SSL_VERIFY | No | true | Set false for self-signed certificates |
JAEGER_TIMEOUT | No | 30 | HTTP request timeout in seconds |
JAEGER_RETRY_ATTEMPTS | No | 3 | Retry count for transient failures (0 to disable) |
JAEGER_CACHE_TTL | No | 120 | TTL in seconds for discovery endpoint cache (0 to disable) |
Copy .env.example to .env and fill in your values.
Add to your MCP config (claude_desktop_config.json or .claude/mcp.json):
Or with uvx (no install required):
Once configured, ask Claude:
order-service from the last hour"GET /checkout"abcdef1234567890?"postgres most frequently?"abc123 against trace def456 โ what spans changed?"order-service?"jaeger_list_servicesReturns all service names Jaeger has seen. Start here when you don't know which services are instrumented. Output is capped at 500 services with a truncation hint.
jaeger_list_operationsReturns all operation names for a given service (e.g. HTTP route names, gRPC method names). Use to discover valid operation names before filtering jaeger_search_traces.
jaeger_search_tracesThe main search tool. Filters:
service (required) โ service name from jaeger_list_servicesoperation โ narrow to a specific endpointtags โ JSON string of tag filters, e.g. {"http.status_code":"500"} or {"error":"true"}start / end โ time range in microseconds UTCmin_duration / max_duration โ duration strings like "100ms", "1.5s", "2m"limit โ default 20, max 1500Returns trace summaries with trace_id, duration_us, span_count, service_count, root_operation, errors_count.
jaeger_get_traceFull trace detail. Accepts a trace_id (hex string, 16-32 chars) and returns:
Error spans are identified by tags["error"] = "true".
jaeger_get_dependenciesService topology graph. Returns directed edges (parent โ child) with call_count. Use lookback_hours (default 24, max 720) to control the window.
jaeger_compare_tracesStructural diff between two traces. Accepts two trace_id hex strings and matches spans by (operationName, serviceName, parentOperation) โ not span ID. Reports:
Use to compare a slow trace against a fast one, or to see what changed between deployments.
jaeger_span_statisticsPer-operation latency percentiles and error rates. Fetches up to limit traces (default 20, max 100) for a service and aggregates all spans by operation name. Reports per operation:
count โ total spans observedp50_duration_us, p95_duration_us, p99_duration_us โ latency percentileserror_count, error_rate โ errors (identified by tags["error"] = "true")Use to find the slowest or most error-prone operations in a service.
jaeger_critical_pathIdentifies the longest-duration span chain from root to leaf in a trace (the critical path) and ranks spans by self-time to find performance bottlenecks.
Reports:
Use to answer "Why is this trace so slow?" and "Which operations consume the most CPU/self-time?"
jaeger_compare_windowsCompares aggregate trace behavior between two time periods for a service to detect performance regressions or improvements across deployments.
Reports:
Use to answer "Did our latest deployment affect performance?" and "Which operations got slower after the database upgrade?"
jaeger_detect_anomaliesScans for statistically significant latency spikes or error-rate increases in a service's recent traces compared to historical baselines.
Reports:
Use to proactively identify performance degradations and reliability issues before they impact users.
jaeger-mcp can also be used as a Python library without an MCP server:
Factual signals from GitHub, npm, and our automated checks โ not a rating.
No reviews yet โ be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/mshegolev-jaeger-mcp)<a href="https://allmcps.com/mcp/mshegolev-jaeger-mcp"><img src="https://allmcps.com/api/badge/mshegolev-jaeger-mcp?style=directory" alt="Jaeger MCP on AllMCPs" /></a>