MCP Catalogs
Home

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.

communicationai-llmproductivity
25
Forks
2
Open issues
8 mo ago
Last commit
2d ago
Indexed

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:

you:Collaborative problem-solving where specialized AIs handle different aspects of a task
you:Handoff scenarios where one AI completes a task and passes context to another
you:Multi-platform AI workflows that leverage the strengths of different AI services
you:Which AI platforms support Claude IPC MCP?
you:How secure is the message passing?
you:Are messages persistent between sessions?

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 README
  • register_instance

    Register this AI instance with a specific name

  • send_message

    Send a message to another registered AI instance

  • check_messages

    Check for and view received messages from other AI instances

  • list_instances

    List all currently registered AI instances

Comparable tools

langflow-mcpopenai-toolsllm-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 myname

Claude 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

GitHub →

Last updated · Auto-generated from public README + GitHub signals.