Claude Bridge MCP Server

A local-first, cross-machine message bus for independent coding agents. Claude Bridge lets coding-agent sessions on different machines exchange ordered messages through named channels. The relay is self-hosted, uses SQLite by default, and exposes MCP, a small JSON API, a dashboard, and a terminal UI.

People who work with developer tools, multi agent and textual and want it reachable from Claude, Cursor, VS Code, or another MCP client. The project is written in Python.

VERIFIED ACTIVE

LAST COMMIT 2026-08-23 · ★ 12 · #72 OF 229 MAINTAINED CODING AGENT · VERIFIED 2026-09-18

MIT · Python servers · how we verify → /methodology

01 · Install Claude Bridge

before you install - you'll need

Set CLAUDE_BRIDGE_AUTH_TOKEN, CLAUDE_BRIDGE_TRUSTED_HOSTS before connecting.

Claude Code

claude mcp add constripacity-claude-bridge -- uvx claude-code-bridge

Claude Desktop / Cursor / VS Code - add to config

{
  "mcpServers": {
    "constripacity-claude-bridge": {
      "command": "uvx",
      "args": [
        "claude-code-bridge"
      ]
    }
  }
}

Same JSON for Cursor. For VS Code, rename the top-level key from `mcpServers` to `servers`.

Using another client? Same JSON, different key

Claude Desktop · mcpServers

Cursor · mcpServers

VS Code · servers

Windsurf · mcpServers

Zed · context_servers

Cline · mcpServers

Roo Code · mcpServers

Continue · mcpServers

LibreChat · mcpServers

Gemini CLI · mcpServers

Codex CLI · mcp_servers

Full setup guides: every client.

02 · Evidence

Security posture

What to check before giving this server access to your agent - from the registry, GitHub, and our own probes. We don't score safety; we show what's verifiable.

runs as local process (stdio) - runs on your machine with your user's permissions

license MIT - declared in the repository

pypi package claude-code-bridge - check the name against the project README before installing (PyPI has no namespace ownership)

registry namespace io.github.constripacity is GitHub-verified and matches the repo owner

03 · What Claude Bridge can do

Prose above is summarized from the project's README and registry record - no invented capabilities.

Latest releases

v1.3.0 · 2026-08-23

Bridge grows from a message bus toward an agent-orchestration platform. A channel can now act as an exclusive work queue: an orchestrator enqueues tasks and a fleet of worker agents atomically claim them - no two…

v1.2.0 · 2026-08-17

Major release. Adds the modern Streamable HTTP /mcp transport, protocol-v1 structured message envelopes, idempotent sends + durable consumer cursors (new bridge_wait / bridge_ack tools - now 8 tools), request-security…

v0.9.6 · 2026-08-17

Packaging/registry fix so uvx - and MCP directories (e.g. Glama) that auto-launch via uvx - can install and run the stdio server. No functional change. · uvx claude-code-bridge now works. The PyPI dist is…

04 · Who maintains Claude Bridge

Claude Bridge is maintained by constripacity. We track 2 MCP servers from constripacity - 2 actively maintained, 13 combined GitHub stars, oldest repo from May 2026.

05 · Facts

category
coding agent - ranked #72 of 229 actively-maintained coding agent servers as of 2026-09-18.
release cadence
5 releases in the last 90 days (latest 2026-08-23)
registry
io.github.constripacity/claude-code-bridge (active, first published 2026-05-27 · 14 versions)
packages
pypi:claude-code-bridge

06 · Claude Bridge FAQ

What is Claude Bridge?

A local-first, cross-machine message bus for independent coding agents. Claude Bridge lets coding-agent sessions on different machines exchange ordered messages through named channels. The relay is self-hosted, uses SQLite by default, and exposes MCP, a small JSON API, a dashboard, and a terminal UI.

Is Claude Bridge still maintained?

Yes - as of 2026-09-18, its last commit was 2026-08-23 and it shipped 5 releases in the last 90 days. We re-verify nightly.

How do I install Claude Bridge?

Run `uvx claude-code-bridge`. The README documents 2 environment variables (CLAUDE_BRIDGE_AUTH_TOKEN, CLAUDE_BRIDGE_TRUSTED_HOSTS) to set first. Set CLAUDE_BRIDGE_AUTH_TOKEN, CLAUDE_BRIDGE_TRUSTED_HOSTS before connecting. You can also paste the ready-made client config above.

Does Claude Bridge run locally?

Yes - it's a stdio server: it runs on your machine (via uvx) with your user's permissions. Your data stays local unless the server itself calls external APIs.

07 · Alternatives to Claude Bridge