Skip to content
VS Code

Claude Bridge for VS Code

io.github.constripacity/claude-code-bridge

Durable local-first MCP relay for independent coding agents.

client:VS Code transport:stdio runtime:pypi

Install Claude Bridge in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "claude-bridge-db",
      "description": "CLAUDE_BRIDGE_DB",
      "password": true
    },
    {
      "type": "promptString",
      "id": "claude-bridge-auth-token",
      "description": "CLAUDE_BRIDGE_AUTH_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "claude-code-bridge": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "claude-code-bridge"
      ],
      "env": {
        "CLAUDE_BRIDGE_DB": "${input:claude-bridge-db}",
        "CLAUDE_BRIDGE_AUTH_TOKEN": "${input:claude-bridge-auth-token}"
      }
    }
  }
}

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

Claude Bridge in other clients