Skip to content
VS Code

MCP Debug Recorder for VS Code

io.github.oaslananka/mcp-debug-recorder

Record debug sessions, commands, failed attempts, and successful fixes in local SQLite storage.

client:VS Code transport:stdio runtime:npm

Install MCP Debug Recorder in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "debug-recorder-db",
      "description": "DEBUG_RECORDER_DB",
      "password": true
    },
    {
      "type": "promptString",
      "id": "log-level",
      "description": "LOG_LEVEL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "fuzzy-threshold",
      "description": "FUZZY_THRESHOLD",
      "password": true
    }
  ],
  "servers": {
    "mcp-debug-recorder": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-debug-recorder"
      ],
      "env": {
        "DEBUG_RECORDER_DB": "${input:debug-recorder-db}",
        "LOG_LEVEL": "${input:log-level}",
        "FUZZY_THRESHOLD": "${input:fuzzy-threshold}"
      }
    }
  }
}

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

MCP Debug Recorder in other clients