Skip to content
VS Code

Log10x MCP for VS Code

io.github.log-10x/log10x-mcp

Tools to rank log patterns by volume and cost and to compact, tier down or offload each pattern

client:VS Code transport:stdio runtime:npm

Install Log10x MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "log10x-api-key",
      "description": "LOG10X_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "log10x-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "log10x-mcp"
      ],
      "env": {
        "LOG10X_API_KEY": "${input:log10x-api-key}"
      }
    }
  }
}

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

Log10x MCP in other clients