Skip to content
VS Code

jaeger mcp for VS Code

io.github.mshegolev/jaeger-mcp

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

client:VS Code transport:stdio runtime:pypi

Install jaeger mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "jaeger-url",
      "description": "JAEGER_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "jaeger-token",
      "description": "JAEGER_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "jaeger-username",
      "description": "JAEGER_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "jaeger-password",
      "description": "JAEGER_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "jaeger-ssl-verify",
      "description": "JAEGER_SSL_VERIFY",
      "password": true
    }
  ],
  "servers": {
    "jaeger-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "jaeger-mcp"
      ],
      "env": {
        "JAEGER_URL": "${input:jaeger-url}",
        "JAEGER_TOKEN": "${input:jaeger-token}",
        "JAEGER_USERNAME": "${input:jaeger-username}",
        "JAEGER_PASSWORD": "${input:jaeger-password}",
        "JAEGER_SSL_VERIFY": "${input:jaeger-ssl-verify}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

jaeger mcp in other clients