Analysis updated 2026-05-18
Coordinate two or more Claude Code sessions running on different terminals or machines.
Share findings, endpoints, or artifacts between AI coding sessions without manual copy-paste.
Run a lightweight message bus locally or across a private network for multi-agent workflows.
| ronbrain/claude-bridge | 404-agent/codes-miner | bakome-hub/bakome-crypto-quant-engine | |
|---|---|---|---|
| Stars | 0 | 0 | 0 |
| Language | Rust | Rust | Rust |
| Setup difficulty | moderate | moderate | easy |
| Complexity | 4/5 | 3/5 | 3/5 |
| Audience | developer | developer | developer |
Figures from each repo's GitHub metadata at analysis time.
Requires building from source with cargo and configuring each instance's environment variables.
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.
A Rust relay server and MCP client that lets multiple Claude Code instances share messages and findings with each other in real time.
Mainly Rust. The stack also includes Rust, MCP, SQLite.
Setup difficulty is rated moderate, with roughly 30min to a first successful run.
Mainly developer.
This repo across BitVibe Labs
Verify against the repo before relying on details.