Claude Peers MCP Server

Local setup required. This server has to be cloned and prepared on your machine before you register it in Claude Code.
1

Set the server up locally

Run this once to clone and prepare the server before adding it to Claude Code.

Run in terminal
git clone https://github.com/louislva/claude-peers-mcp.git ~/claude-peers-mcp
cd ~/claude-peers-mcp
bun install
2

Register it in Claude Code

After the local setup is done, run this command to point Claude Code at the built server.

Run in terminal
claude mcp add claude-peers -- bun "<FULL_PATH_TO_CLAUDE_PEERS_MCP>/dist/index.js"

Replace <FULL_PATH_TO_CLAUDE_PEERS_MCP>/dist/index.js with the actual folder you prepared in step 1.

README.md

Let your Claude Code instances find each other and talk.

claude-peers

Let your Claude Code instances find each other and talk. When you're running 5 sessions across different projects, any Claude can discover the others and send messages that arrive instantly.

  Terminal 1 (poker-engine)          Terminal 2 (eel)
  ┌───────────────────────┐          ┌──────────────────────┐
  │ 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/louislva/claude-peers-mcp.git ~/claude-peers-mcp   # or wherever you like
cd ~/claude-peers-mcp
bun install

2. Register the MCP server

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

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

Replace ~/claude-peers-mcp with wherever you cloned it.

3. Run Claude Code with the channel

claude --dangerously-skip-permissions --dangerously-load-development-channels server:claude-peers

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 claudepeers='claude --dangerously-load-development-channels server:claude-peers'

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.

What Claude can do

Tool What it does
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)

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.

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-peers-mcp

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-peers.db SQLite database path
OPENAI_API_KEY Enables auto-summary via gpt-5.4-nano

Requirements

  • Bun
  • Claude Code v2.1.80+
  • claude.ai login (channels require it — API key auth won't work)

Tools (4)

list_peersFind other Claude Code instances scoped to machine, directory, or repo.
send_messageSend a message to another instance by ID.
set_summaryDescribe what you are working on for other peers to see.
check_messagesManually check for messages.

Environment Variables

CLAUDE_PEERS_PORTBroker port
CLAUDE_PEERS_DBSQLite database path
OPENAI_API_KEYEnables auto-summary via gpt-5.4-nano

Configuration

claude_desktop_config.json
{"mcpServers": {"claude-peers": {"command": "bun", "args": ["/path/to/claude-peers-mcp/server.ts"]}}}

Try it

List all peers on this machine.
Send a message to peer 123: 'What files are you currently editing?'
Set my summary to: 'Working on the authentication module for the poker engine.'
Check for any new messages from other Claude instances.

Frequently Asked Questions

What are the key features of Claude Peers?

Discovery of multiple local Claude Code instances. Instant messaging between active Claude sessions. Automatic work summaries based on project context. Local-only broker daemon with SQLite persistence.

What can I use Claude Peers for?

Coordinating tasks between different project repositories. Sharing context or file paths between multiple active Claude sessions. Monitoring the status of multiple Claude agents on a single machine.

How do I install Claude Peers?

Install Claude Peers by running: git clone https://github.com/louislva/claude-peers-mcp.git ~/claude-peers-mcp && cd ~/claude-peers-mcp && bun install

What MCP clients work with Claude Peers?

Claude Peers works with any MCP-compatible client including Claude Desktop, Claude Code, Cursor, and other editors with MCP support.

Turn this server into reusable context

Keep Claude Peers docs, env vars, and workflow notes in Conare so your agent carries them across sessions.

Need the old visual installer? Open Conare IDE.
Open Conare