PluginBench
MCP Server
Maintained
MIT

io.github.constripacity/claude-code-bridge MCP Server

io.github.constripacity/claude-code-bridge

What is the io.github.constripacity/claude-code-bridge MCP server?

MCP relay so Claude Code agents on different machines can exchange messages via named channels.

How to install io.github.constripacity/claude-code-bridge

Copy-paste configuration for popular MCP clients.

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

    SQLite database path (default: ./claude-bridge.db). Share the same path across HTTP and stdio instances to share state.

  • CLAUDE_BRIDGE_AUTH_TOKEN
    secret

    Optional Bearer token. Only applies to HTTP mode (not stdio). When set, requires Authorization: Bearer <token> on all endpoints except /status.

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "claude-code-bridge": {
      "command": "uvx",
      "args": [
        "claude-code-bridge",
        "--stdio"
      ],
      "env": {
        "CLAUDE_BRIDGE_DB": "<YOUR_CLAUDE_BRIDGE_DB>",
        "CLAUDE_BRIDGE_AUTH_TOKEN": "<YOUR_CLAUDE_BRIDGE_AUTH_TOKEN>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "claude-code-bridge": {
      "command": "uvx",
      "args": [
        "claude-code-bridge",
        "--stdio"
      ],
      "env": {
        "CLAUDE_BRIDGE_DB": "<YOUR_CLAUDE_BRIDGE_DB>",
        "CLAUDE_BRIDGE_AUTH_TOKEN": "<YOUR_CLAUDE_BRIDGE_AUTH_TOKEN>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "claude-code-bridge": {
      "command": "uvx",
      "args": [
        "claude-code-bridge",
        "--stdio"
      ],
      "env": {
        "CLAUDE_BRIDGE_DB": "<YOUR_CLAUDE_BRIDGE_DB>",
        "CLAUDE_BRIDGE_AUTH_TOKEN": "<YOUR_CLAUDE_BRIDGE_AUTH_TOKEN>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "claude-code-bridge": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "claude-code-bridge",
        "--stdio"
      ],
      "env": {
        "CLAUDE_BRIDGE_DB": "<YOUR_CLAUDE_BRIDGE_DB>",
        "CLAUDE_BRIDGE_AUTH_TOKEN": "<YOUR_CLAUDE_BRIDGE_AUTH_TOKEN>"
      }
    }
  }
}
Claude Code
claude mcp add claude-code-bridge --env CLAUDE_BRIDGE_DB=<YOUR_CLAUDE_BRIDGE_DB> --env CLAUDE_BRIDGE_AUTH_TOKEN=<YOUR_CLAUDE_BRIDGE_AUTH_TOKEN> -- uvx claude-code-bridge --stdio

Related MCP servers

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

1
Python
MIT
View repository →