Skip to content
VS Code

logclaw mcp server for VS Code

io.github.robeldev/logclaw-mcp-server

Connect AI coding tools to LogClaw incidents, logs, and anomaly detections.

client:VS Code transport:stdio runtime:npm

Install logclaw mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "logclaw-api-key",
      "description": "LOGCLAW_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "logclaw-endpoint",
      "description": "LOGCLAW_ENDPOINT",
      "password": true
    }
  ],
  "servers": {
    "logclaw-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "logclaw-mcp-server"
      ],
      "env": {
        "LOGCLAW_API_KEY": "${input:logclaw-api-key}",
        "LOGCLAW_ENDPOINT": "${input:logclaw-endpoint}"
      }
    }
  }
}

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

logclaw mcp server in other clients