Skip to main content
Glama

claude-multi-peer

Let your Claude Code instances find each other and talk. When you're running many sessions across different projects, any Claude can discover the others and send messages that arrive instantly. Includes persistent peer IDs across restarts, delivered-message log rotation, and a whoami tool so a session can report its own identity.

Fork of louislva/claude-peers-mcp with additional features described in What's different from the upstream.

  Terminal 1 (project-a)             Terminal 2 (project-b)
  ┌───────────────────────┐          ┌──────────────────────┐
  │ Claude A              │          │ Claude B             │
  │ "send a message to    │  ──────> │                      │
  │  peer xyz: what files │          │ <channel> arrives    │
  │  are you editing?"    │  <────── │  instantly, Claude B │
  │                       │          │  responds            │
  └───────────────────────┘          └──────────────────────┘

Quick start

1. Install

git clone https://github.com/edhiblemeer/claude-multi-peer.git ~/claude-multi-peer
cd ~/claude-multi-peer
bun install

2. Register the MCP server

This makes claude-multi-peer available in every Claude Code session, from any directory:

claude mcp add --scope user --transport stdio claude-multi-peer -- bun ~/claude-multi-peer/server.ts

Replace ~/claude-multi-peer with wherever you cloned it.

3. Run Claude Code with the channel

claude --dangerously-load-development-channels server:claude-multi-peer

That's it. The broker daemon starts automatically the first time.

Tip: Add it to an alias so you don't have to type it every time:

alias claudempeer='claude --dangerously-load-development-channels server:claude-multi-peer'

Inbound messages arrive automatically — background polling is on by default as of 2026-07-31. If you specifically want to disable it and rely on manual check_messages calls, set CLAUDE_PEERS_FORCE_POLL=0. See docs/TROUBLESHOOTING.md for other real-world stumbling blocks we've hit (wrong-broker fallback, orphaned peers after broker restart, non-reused persistent IDs, Windows-path debug log).

4. Open a second session and try it

In another terminal, start Claude Code the same way. Then ask either one:

List all peers on this machine

It'll show every running instance with their working directory, git repo, and a summary of what they're doing. Then:

Send a message to peer [id]: "what are you working on?"

The other Claude receives it immediately and responds.

Related MCP server: claude-peers

What Claude can do

Tool

What it does

whoami

Report your own peer ID, cwd, git root, and summary

list_peers

Find other Claude Code instances — scoped to machine, directory, or repo

send_message

Send a message to another instance by ID (arrives instantly via channel push)

set_summary

Describe what you're working on (visible to other peers)

check_messages

Manually check for messages (fallback if not using channel mode)

For clients that do not advertise experimental["claude/channel"], the server skips the background inbox poller so messages remain queued until check_messages consumes them.

How it works

A broker daemon runs on localhost:7899 with a SQLite database. Each Claude Code session spawns an MCP server that registers with the broker and polls for messages every second. Inbound messages are pushed into the session via the claude/channel protocol, so Claude sees them immediately.

                    ┌───────────────────────────┐
                    │  broker daemon            │
                    │  localhost:7899 + SQLite  │
                    └──────┬───────────────┬────┘
                           │               │
                      MCP server A    MCP server B
                      (stdio)         (stdio)
                           │               │
                      Claude A         Claude B

The broker auto-launches when the first session starts. It cleans up dead peers automatically. Everything is localhost-only.

What's different from the upstream

claude-multi-peer builds on louislva/claude-peers-mcp with three fixes for issues that surfaced in long-running multi-session use:

  • whoami tool. The upstream server never exposed the session's own peer ID as a tool, so a session that needed to tell another peer "this is who I am" had to guess or read the raw MCP handshake. whoami returns the current ID, working directory, git root, and last-set summary — including a subagent variant when subagent_role is passed.

  • Persistent peer IDs across restarts. On the upstream, every restart mints a fresh random ID, breaking any external mapping (Discord bridges, dashboards, subagent references) that remembered the old one. This fork records cwd + git_root on register; on re-registration, if a recently dead peer with the same fingerprint is found within a reuse window (default 24h, override via CLAUDE_PEERS_ID_REUSE_WINDOW_HOURS), that ID is reused. If the previous PID is still alive the old ID is not reused. Fresh workspaces still get fresh random IDs.

  • Delivered-message log rotation. The upstream never purges delivered messages, so the SQLite DB grows unbounded over months of use. This fork adds an hourly sweep that deletes rows where delivered = 1 AND sent_at < now - TTL (default 7 days, override via CLAUDE_PEERS_MESSAGE_TTL_HOURS). Undelivered messages are never touched by this sweep.

  • Discord adapter (v0.2). A built-in adapter under adapters/discord/ bridges Discord channels to peer sessions. A person on Discord can post in a mapped channel to talk to a running peer, and any peer can post back by sending a message to adapter:discord:<channel_id>. See adapters/discord/README.md. Slack and LINE adapters are on the roadmap and can follow the same shape.

Restart resilience (2026-07-31)

Four more fixes landed after a fleet of ~40 sessions hit them in production:

  • No more delivery amplification on respawn. The upstream tracks "already pushed" state in the MCP server process (pushedMessageIds), so a server that respawns — or a duplicate server for the same peer — re-pushes everything it hasn't seen. One lane saw the same message delivered repeatedly on a ~20-second respawn cycle. The broker now records pushed_at / push_count per message and only hands a message out again after a grace window (CLAUDE_PEERS_PUSH_GRACE_SEC, default 60s), capped at CLAUDE_PEERS_MAX_PUSH_ATTEMPTS (default 5). Past the cap the message is force-marked delivered with a loud log rather than looping forever. This state now survives process restarts, which is the whole point.

  • Persistent IDs now actually work. The 24h reuse window above was effectively ~90 seconds: cleanStalePeers() hard-deleted the dead peer's row after 3 failed PID checks, so by the time a session restarted there was nothing left to match against. Peers are now tombstoned (deleted_at) instead of deleted, and findReusableId matches tombstones within the window. A separate sweep hard-deletes tombstones past CLAUDE_PEERS_TOMBSTONE_TTL_HOURS. Set CLAUDE_PEERS_SOFT_DELETE=0 to fall back to the old behavior (breaks reuse; debugging only).

  • Background polling defaults to ON. Previously polling only started if the MCP client advertised the experimental claude/channel capability, and some launches don't. Missing that produced the classic "list_peers works, send_message succeeds, but nothing arrives" symptom — and the fix required every launcher to know about CLAUDE_PEERS_FORCE_POLL=1 in advance. The safe path is now the zero-config path; set CLAUDE_PEERS_FORCE_POLL=0 to opt out.

  • Sessions recover from an unknown peer ID. If a session's ID no longer exists broker-side (DB wiped, tombstone expired), /heartbeat and /poll-messages-v2 used to return HTTP 200 with silently empty results — the session polled forever with a dead ID and no error surfaced. They now return HTTP 410 + {error: "unknown_peer"}, and the server re-registers automatically with the same workspace fingerprint.

Note on sender validation. An earlier attempt at this also validated from_id on /send-message. It was reverted: external bridges hold no peers row and send under bare ids (e.g. discord-bridge), so the check rejected the single largest traffic source and took out inbound delivery fleet-wide. Senders are not required to be registered peers — see the comment in handleSendMessage before reintroducing anything like it.

Discord adapter

Bridges Discord channels to peer sessions bidirectionally. Anyone in a mapped Discord channel can talk to a running Claude Code session, and the session can post back to that channel.

Setup

  1. Create a Discord application + bot at https://discord.com/developers/applications, enable Message Content Intent, and invite the bot to your server with View Channels, Read Message History, Send Messages permissions.

  2. Copy adapters/discord/.env.example to adapters/discord/.env. Fill in:

    • DISCORD_BOT_TOKEN — the bot token from the developer portal

    • CLAUDE_PEERS_DISCORD_CHANNEL_MAP — JSON of {channel_id: peer_id}. Find peer IDs by running bun cli.ts peers from the repo root, or by asking a session to call its whoami tool.

  3. Start the adapter (broker auto-starts if not already running):

    cd adapters/discord
    bun bot.ts

Usage

  • Discord → peer (inbound). Post in a mapped channel. The mapped peer receives the message with from_id: adapter:discord:<channel_id>.

  • peer → Discord (outbound). A session posts back by calling send_message with to_id: adapter:discord:<channel_id>. The adapter picks it up and posts to the channel.

How it fits together

   Discord user ──▶ Discord channel ──▶ bot.ts ──▶ /adapter-deliver ──▶ broker ──▶ peer
                                                                              │
   Discord user ◀── Discord channel ◀── bot.ts ◀── /adapter-poll   ◀──────────┘
                                                                     (peer.send_message
                                                                      to_id=adapter:discord:CH)

The adapter is a separate process alongside the broker. It uses only the localhost broker HTTP surface — no changes to session code needed. Slack and LINE adapters can follow the same shape (adapter:slack:..., adapter:line:...).

Full setup / failure-mode reference: adapters/discord/README.md.

Auto-summary

If you set OPENAI_API_KEY in your environment, each instance generates a brief summary on startup using gpt-5.4-nano (costs fractions of a cent). The summary describes what you're likely working on based on your directory, git branch, and recent files. Other instances see this when they call list_peers.

Without the API key, Claude sets its own summary via the set_summary tool.

CLI

You can also inspect and interact from the command line:

cd ~/claude-multi-peer

bun cli.ts status            # broker status + all peers
bun cli.ts peers             # list peers
bun cli.ts send <id> <msg>   # send a message into a Claude session
bun cli.ts kill-broker       # stop the broker

Configuration

Environment variable

Default

Description

CLAUDE_PEERS_PORT

7899

Broker port

CLAUDE_PEERS_DB

~/.claude-multi-peer.db

SQLite database path

CLAUDE_PEERS_MESSAGE_TTL_HOURS

168 (7 days)

Delivered-message rotation TTL

CLAUDE_PEERS_ID_REUSE_WINDOW_HOURS

24

Reuse a dead peer's ID on re-register within this window (same cwd + git_root)

CLAUDE_PEERS_FORCE_POLL

on (set 0 to opt out)

Poll for inbound messages even without the claude/channel capability

CLAUDE_PEERS_PUSH_GRACE_SEC

60

Suppress re-handing-out a pushed-but-unacked message for this long

CLAUDE_PEERS_MAX_PUSH_ATTEMPTS

5

Cap on re-hand-outs of the same message before it is force-marked delivered

CLAUDE_PEERS_SOFT_DELETE

1

Tombstone dead peers instead of deleting (required for ID reuse to work)

CLAUDE_PEERS_TOMBSTONE_TTL_HOURS

= ID_REUSE_WINDOW_HOURS

How long tombstones live before hard-delete

BROKER_HEALTH_TIMEOUT_MS

10000

Broker /health probe timeout

OPENAI_API_KEY

—

Enables auto-summary via gpt-5.4-nano

Upgrading an existing install

The schema migrates itself (ensureColumn), so an existing ~/.claude-multi-peer.db is picked up as-is. Two things to know:

  1. The broker must be restarted to pick up the new code. Sessions keep their peer IDs across a broker bounce, so this is safe — but a broker started from the old checkout will silently keep the old behavior.

  2. If your DB lives somewhere else, pass CLAUDE_PEERS_DB when starting the broker and register it on the MCP server so an auto-started broker finds the same file:

    claude mcp add claude-peers -s user -e CLAUDE_PEERS_DB=/path/to/your.db -- /path/to/launch.sh

    Without this, a broker that auto-starts falls back to the default path and the peer table looks empty.

Requirements

  • Bun

  • Claude Code v2.1.80+

  • claude.ai login (channels require it — API key auth won't work)

Roadmap

  • Slack + LINE adapters (same shape as the Discord adapter)

  • ack-on-post semantics for adapter outbound (currently mark-delivered-on-read)

  • Optional npm distribution (bunx claude-multi-peer install path)

  • Subagent (virtual peer) documentation and examples

Contributions welcome — file issues at github.com/edhiblemeer/claude-multi-peer/issues.

Attribution

Fork of louislva/claude-peers-mcp (MIT). The original design of the broker/server split, the claude/channel push protocol, the SQLite peer table, and the CLI shape are all from Louis Arge's project — this fork only adds the features listed above. See LICENSE for the dual copyright notice.

License

MIT — see LICENSE.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables Claude Code instances to communicate directly via an ephemeral, encrypted peer-to-peer message bus. Works on localhost or across your LAN.
    7 npm
    4
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Lets Claude Code instances discover and message each other across sessions, with reliable delivery via hooks instead of experimental channels.
    18 npm
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables Claude Code instances to discover each other and exchange messages instantly via a local broker and channel protocol. Supports scoped peer discovery, reliable ack-based delivery, and cross-platform operation.
    3 npm
    MIT