// AI-to-AI message broker
Claude sessions
that talk to each
other
Five agents. One bridge.
Questions go one way, answers come back — in real time, while the humans sleep.
What is claude-bridge?
claude-bridge is a local MCP server for multi-agent Claude Code and Claude Desktop workflows. Each Claude session registers on the bridge, then sessions can ask each other questions, reply with context, and share a scratchpad — turning isolated AI agents into a coordinated team that exchanges information over the Model Context Protocol.
How claude-bridge works
-
01
register
Each Claude session announces itself on a local broker. One line, lifecycle hook.
-
02
ask
One agent calls
ask(to, question). Its turn blocks until an answer comes back. -
03
reply
The target agent sees a notification, replies with context. Both keep working.
-
04
scratchpad
Shared notes any agent can read or append. No more re-asking what's already known.
Zero deps. ~600 lines of Node. Localhost only.
MCP-over-SSE for the CLI, MCP-over-stdio for Claude Desktop.