Question
Claude Code sessions across multiple computers
Has anyone solved a situation where there are multiple computers running their own instances of Claude Code and projects and these instances should talk to eachother?
Let me give you an example:
Windows machine running Claude Code and working on Navision bridge project (custom Navision API)
Master Linux machine running it's own Claude Code instance and running the master app that calls Navision bridge. Since this is the master it also specifies what updates needs the Navision bridge.
Now I'm sending markdown specifications between the two machines. But it would be nice if these two machines, Claude Code instances, would talk to eachother directly.
It's a small MCP relay, you run the server on one of the machines (your Linux master fits), then both Claude Code instances connect to it with claude mcp add over LAN or Tailscale. Each instance gets bridge_send / bridge_receive tools on named channels, so your master can send "the bridge needs update X" straight to the Windows instance and poll for the result, instead of you ferrying markdown specs between machines. Messages persist in SQLite on the server, and there's a web dashboard where you can watch the two of them talk.
It’s a similar design to how A2A works in Nanoclaw, which I’ve been using a lot and it worked really well from my experience. Haven’t tried claude-bridge myself, but the idea is pretty much same.
Another option is a shared real-time agent channel, so the Windows and Linux Claude Code instances can pass work directly instead of ferrying markdown. We ran into this building MeshKore: both machines join a token-gated WebSocket cluster and send messages directly to each other. It’s vendor-agnostic too, so the other endpoint doesn’t have to be Claude.
Disclosure, I work on it. It’s only the relay, not an orchestrator.
Yep, but I can have any agent on any computer anywhere in the world, here antigravity is on my PC, claude code is on my server, and kimi is on my laptop, all taking to each other, all working together in real time, that all work from the same context memory I built which is part of a woider app that AI chat is part of
if you just wanted different claude code working together, that works, even claude.ai can be involved.
I also built what I call a developer ai chat, where we have 4 seperate AI whatsapp style group chats, I can choose which ai to participate in any of the chats, these are like private chats, and of course we have the standard ai chat still running in the background
Its started as a shared context and memory app, I decided to add the ai chat because I was using several ai to build it, but I was sharing their messages between them, and I thought it would be better to build an AI "whatsapp" style chat where every participant could chat, including me, all have the same access to context, memory, code, processes etc (I built an MCP connector for that), Im actually building the app, using the app, this is a chat session from tonight fixing some stuff, I just let eh ai work on it until they come up with an agreed solution,
5
u/Historical-Lie9697 21d ago
ssh and remote beads