PluginBench
MCP Server

MCP Debug Recorder MCP Server

io.github.oaslananka/mcp-debug-recorder

What is the MCP Debug Recorder MCP server?

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

How to install MCP Debug Recorder

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • DEBUG_RECORDER_DB

    Override the SQLite database location for local debug history.

  • LOG_LEVEL

    Set the minimum structured log level: debug, info, warn, or error.

  • FUZZY_THRESHOLD

    Override the Fuse.js threshold used during fuzzy reranking.

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "mcp-debug-recorder": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-debug-recorder"
      ],
      "env": {
        "DEBUG_RECORDER_DB": "<YOUR_DEBUG_RECORDER_DB>",
        "LOG_LEVEL": "<YOUR_LOG_LEVEL>",
        "FUZZY_THRESHOLD": "<YOUR_FUZZY_THRESHOLD>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "mcp-debug-recorder": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-debug-recorder"
      ],
      "env": {
        "DEBUG_RECORDER_DB": "<YOUR_DEBUG_RECORDER_DB>",
        "LOG_LEVEL": "<YOUR_LOG_LEVEL>",
        "FUZZY_THRESHOLD": "<YOUR_FUZZY_THRESHOLD>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "mcp-debug-recorder": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-debug-recorder"
      ],
      "env": {
        "DEBUG_RECORDER_DB": "<YOUR_DEBUG_RECORDER_DB>",
        "LOG_LEVEL": "<YOUR_LOG_LEVEL>",
        "FUZZY_THRESHOLD": "<YOUR_FUZZY_THRESHOLD>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "mcp-debug-recorder": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-debug-recorder"
      ],
      "env": {
        "DEBUG_RECORDER_DB": "<YOUR_DEBUG_RECORDER_DB>",
        "LOG_LEVEL": "<YOUR_LOG_LEVEL>",
        "FUZZY_THRESHOLD": "<YOUR_FUZZY_THRESHOLD>"
      }
    }
  }
}
Claude Code
claude mcp add mcp-debug-recorder --env DEBUG_RECORDER_DB=<YOUR_DEBUG_RECORDER_DB> --env LOG_LEVEL=<YOUR_LOG_LEVEL> --env FUZZY_THRESHOLD=<YOUR_FUZZY_THRESHOLD> -- npx -y mcp-debug-recorder

Related MCP servers

Aggregate multiple MCP backends behind a single stdio endpoint with namespaced routing.

View repository →

MCP server for EasyEDA Pro: PCB inspection, BOM, exports, and hardware review.

View repository →

Production-grade MCP server for KiCad EDA—PCB design, DRC, simulation, BOM, DFM, and manufacturing.

View repository →

Monitor MCP server health, uptime, response times, and Azure DevOps pipeline status

View repository →

SSH Linux metrics, baselines, anomaly detection, and plain-English infrastructure explanations.

View repository →

Secure MCP SSH automation server with policy controls, resources, prompts, stdio, and HTTP.

View repository →