git404hub

what is claude-bridge fr?

ronbrain/claude-bridge — explained in plain English

Analysis updated 2026-05-18

0RustAudience · developerComplexity · 4/5Setup · moderate

tl;dr

A Rust relay server and MCP client that lets multiple Claude Code instances share messages and findings with each other in real time.

vibe map

mindmap
  root((claude-bridge))
    What it does
      Relays messages
      Shares findings
    Tech stack
      Rust
      MCP
      SQLite
    Use cases
      Multi-agent coordination
      Shared channels
    Audience
      Developers

Code map

Detail Auto

An interactive map of this repo's files and how they connect — its source is parsed live in your browser. Click Visualize to build it.

filefunction / class

what do people make with this?

VIBE 1

Coordinate two or more Claude Code sessions running on different terminals or machines.

VIBE 2

Share findings, endpoints, or artifacts between AI coding sessions without manual copy-paste.

VIBE 3

Run a lightweight message bus locally or across a private network for multi-agent workflows.

what's the stack?

RustMCPSQLite

how it stacks up fr

ronbrain/claude-bridge0xr10t/pulsefi404-agent/codes-miner
Stars000
LanguageRustRustRust
Setup difficultymoderatehardmoderate
Complexity4/54/53/5
Audiencedeveloperdeveloperdeveloper

Figures from each repo's GitHub metadata at analysis time.

how do i run it?

Difficulty · moderate time til it works · 30min

Requires building from source with cargo and configuring each instance's environment variables.

in plain english

Claude Bridge is a lightweight relay server that lets two or more instances of Claude Code, Anthropic's AI coding tool, communicate with each other in real time. The problem it solves is that when multiple Claude Code sessions are running (for example, on different servers or in different terminals), they have no built-in way to share messages, findings, or discovered artifacts without manual copy-paste between windows. This tool creates a shared message bus so they can coordinate automatically. The repository ships three separate programs. The first is bridge-server, a central HTTP relay that stores messages, findings, and presence information for all connected sessions. The second is bridge-mcp, a client that each Claude Code instance runs, it connects to the server and exposes a set of tools the AI model can call. The third is a human-facing bridge command-line tool that lets you send messages, check findings, and view channel activity from your own terminal without starting a Claude session. The system supports two deployment layouts: all instances on a single machine sharing a local server, or multiple servers connected over a private network. Persistence is optional: by default all state lives in memory and is lost on restart, but you can point it at a SQLite file (a lightweight, self-contained database format) to survive reboots. The project is written in Rust and ships statically compiled binaries, meaning they can be copied to other machines without installing extra dependencies. SQLite support is bundled directly into the binary. The full README is longer than what was provided.

prompts (copy fr)

prompt 1
Help me build and install the bridge-server, bridge-mcp, and bridge binaries from source with cargo.
prompt 2
Explain the identity, roles, and addressing system this project uses to keep multiple sessions distinguishable.
prompt 3
Show me how to configure bridge-mcp to persist state to a SQLite file instead of memory.
prompt 4
Walk me through setting up a single VPS, local-only topology for two Claude Code instances.

Frequently asked questions

what is claude-bridge fr?

A Rust relay server and MCP client that lets multiple Claude Code instances share messages and findings with each other in real time.

What language is claude-bridge written in?

Mainly Rust. The stack also includes Rust, MCP, SQLite.

How hard is claude-bridge to set up?

Setup difficulty is rated moderate, with roughly 30min to a first successful run.

Who is claude-bridge for?

Mainly developer.

peek the repo → explain another one

This repo across BitVibe Labs

double-check against the repo, no cap.