Skip to content
VS Code

claude replay for VS Code

io.github.constripacity/claude-replay

Session checkpoint & recovery for Claude Code: resume, search, tag, and export recorded sessions.

client:VS Code transport:stdio runtime:pypi

Install claude replay in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "claude-replay-db",
      "description": "CLAUDE_REPLAY_DB",
      "password": true
    }
  ],
  "servers": {
    "claude-replay": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "claude-replay"
      ],
      "env": {
        "CLAUDE_REPLAY_DB": "${input:claude-replay-db}"
      }
    }
  }
}

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

claude replay in other clients