claude-ipc-mcp
by jdez427·★ 132·Score 45
MCP server enabling AI-to-AI communication across different platforms like Claude, Gemini, and ChatGPT using natural language commands.
Overview
Claude IPC MCP is a specialized MCP server that facilitates inter-agent communication between different AI assistants. It provides a persistent messaging system similar to email, allowing AIs to send and receive messages across different platforms and sessions. The server implements natural language commands for registration, messaging, and instance management, making it accessible without coding knowledge.
Try asking AI
After installing, here are 6 things you can ask your AI assistant:
When to choose this
Choose this when you need multiple AI assistants to collaborate across different platforms without complex setup.
When NOT to choose this
Avoid if you need high-security communication as the authentication is optional and basic.
Tools this server exposes
4 tools extracted from the READMEregister_instanceRegister this AI instance with a specific name
send_messageSend a message to another registered AI instance
check_messagesCheck for and view received messages from other AI instances
list_instancesList all currently registered AI instances
Comparable tools
Installation
Installation
Quick Install (2 minutes)
# 1. Clone the repo
git clone https://github.com/jdez427/claude-ipc-mcp.git
cd claude-ipc-mcp
# 2. Install UV package manager
curl -LsSf https://astral.sh/uv/install.sh | sh
# 3. Install dependencies
uv sync
# 4. For Claude Code: Run installer
./scripts/install-mcp.sh
# 5. Restart Claude Code and test
# Type: Register this instance as mynameClaude Desktop Configuration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"claude-ipc": {
"command": "uv",
"args": ["run", "claude-ipc-mcp"]
}
}
}FAQ
- Which AI platforms support Claude IPC MCP?
- Currently works with Claude Code, Gemini, ChatGPT, and any Python-capable AI assistant.
- How secure is the message passing?
- Basic implementation doesn't include encryption by default, but optional authentication can be added for security.
- Are messages persistent between sessions?
- Yes, messages survive restarts and persist across sessions.
Compare claude-ipc-mcp with
Last updated · Auto-generated from public README + GitHub signals.