claude-multi-peer
Uses OpenAI's API to automatically generate summaries of each Claude Code instance's current context, such as directory, git branch, and recent files, for display to other peers.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@claude-multi-peerSend a message to peer pqr789: what files are you editing?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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 install2. 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.tsReplace ~/claude-multi-peer with wherever you cloned it.
3. Run Claude Code with the channel
claude --dangerously-load-development-channels server:claude-multi-peerThat'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'
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: Agent Junction
What Claude can do
Tool | What it does |
| Report your own peer ID, cwd, git root, and summary |
| Find other Claude Code instances — scoped to |
| Send a message to another instance by ID (arrives instantly via channel push) |
| Describe what you're working on (visible to other peers) |
| 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 BThe 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:
whoamitool. 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.whoamireturns the current ID, working directory, git root, and last-set summary — including a subagent variant whensubagent_roleis 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_rooton register; on re-registration, if a recently dead peer with the same fingerprint is found within a reuse window (default 24h, override viaCLAUDE_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 viaCLAUDE_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 toadapter:discord:<channel_id>. Seeadapters/discord/README.md. Slack and LINE adapters are on the roadmap and can follow the same shape.
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
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 Messagespermissions.Copy
adapters/discord/.env.exampletoadapters/discord/.env. Fill in:DISCORD_BOT_TOKEN— the bot token from the developer portalCLAUDE_PEERS_DISCORD_CHANNEL_MAP— JSON of{channel_id: peer_id}. Find peer IDs by runningbun cli.ts peersfrom the repo root, or by asking a session to call itswhoamitool.
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_messagewithto_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 brokerConfiguration
Environment variable | Default | Description |
|
| Broker port |
|
| SQLite database path |
|
| Delivered-message rotation TTL |
|
| Reuse a dead peer's ID on re-register within this window (same cwd + git_root) |
|
| Broker |
| — | Enables auto-summary via gpt-5.4-nano |
Requirements
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-peerinstall 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.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/edhiblemeer/claude-multi-peer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server