AgentTalk MCP Server & LAN P2P Bridge โ€” multi-agent coordination via MCP

Esco (AgentTalk MCP Server & LAN P2P Bridge)

Esco is a robust, lightweight, and high-performance Model Context Protocol (MCP) integration for the AgentTalk communication bus. It enables multiple AI coding agents (such as Claude, Codex, Clew, OpenCode, OpenClaw, and Hermes-Agent) to communicate and coordinate asynchronously.

By extending AgentTalk's file-based message bus, Esco introduces Peer-to-Peer (P2P) LAN discovery and messaging, allowing agents running on separate machines in the same local network to automatically find and talk to each other without central servers.

๐Ÿš€ Key Features

  • P2P LAN Discovery: Automatic peer discovery on local networks using UDP Broadcast on port 9999.
  • Direct HTTP Messaging: Messages are routed directly to target peers using dedicated HTTP POST servers bound on ports 18000-18100.
  • Identity Registration System: Agents can claim their roster name and role via register_identity() once, mapping process isolation to logical names.
  • Blocking Wait Loop: The wait_for_message() tool allows agents to enter a low-overhead, perpetual listening state to wait for incoming commands.
  • Decentralized & Serverless: Works fully offline and locally without cloud subscriptions.

๐Ÿ“ Repository Structure

Esco/
โ”œโ”€โ”€ src/agenttalk/             # Core AgentTalk library (message store, CLI, wrapper)
โ”‚   โ””โ”€โ”€ store.py               # File-backed message bus implementation
โ”œโ”€โ”€ agenttalk_mcp/             # Our MCP server implementation
โ”‚   โ”œโ”€โ”€ server.py              # FastMCP server entry point (stdio or sse transport)
โ”‚   โ”œโ”€โ”€ lan_p2p.py             # UDP broadcast discovery & HTTP P2P messaging engine
โ”‚   โ”œโ”€โ”€ example_workflow.py    # Working 2-agent task handoff example
โ”‚   โ””โ”€โ”€ client_simulator.py    # Console-based inter-agent simulation runner
โ”œโ”€โ”€ AGENT_MCP_GUIDE.md         # Setup manual for Claude, Codex, Clew, etc.
โ”œโ”€โ”€ .gitignore                 # Excludes __pycache__, runtime .agenttalk/ store, graphify-out/
โ””โ”€โ”€ README.md                  # This file

๐Ÿ› ๏ธ Getting Started

1. Requirements

Ensure you have Python 3.10+ and the official mcp library installed:

pip install mcp

2. Local Simulation

You can test the MCP server functionality and P2P communication loops locally:

python agenttalk_mcp/client_simulator.py

Or run a real end-to-end multi-agent task handoff (a lead agent assigns work, a worker performs it and reports back, the lead verifies the result):

python agenttalk_mcp/example_workflow.py

The server supports two transports (see AGENT_MCP_GUIDE.md for full details):

  • stdio (default) โ€” each agent spawns its own server subprocess.
  • sse โ€” one shared server (AGENTTALK_TRANSPORT=sse) that multiple agents/machines connect to over HTTP.

3. Registering the MCP Server in Agent Clients

To register the server for use, configure the command python D:/Projects/Github/Esco/agenttalk_mcp/server.py in your agent configuration.

For Claude Desktop (%APPDATA%\Claude\claude_desktop_config.json):

{
  "mcpServers": {
    "agenttalk-mcp": {
      "command": "python",
      "args": [
        "D:/Projects/Github/Esco/agenttalk_mcp/server.py"
      ]
    }
  }
}

For Codex (~/.codex/config.toml):

[mcp_servers.agenttalk]
command = "python"
args = ["D:/Projects/Github/Esco/agenttalk_mcp/server.py"]

See AGENT_MCP_GUIDE.md for full configuration details.

๐Ÿค How Agents Communicate Freely

When configured with this MCP server, agents should adhere to the following workflow:

  1. Register Identity: At startup, call register_identity(name="agent_name").
  2. Send Message: To communicate, invoke send_message(recipient="target_agent", body="message content").
  3. Enter Listen Loop: To wait for incoming responses, block on wait_for_message(). The tool's system instruction enforces that the agent must call this tool at the end of its turn to remain online.

MCP Server ยท Populars

MCP Server ยท New

    frankchu91

    MindBase โ€” Karpathy's LLM Wiki, as a product

    Karpathy's LLM Wiki idea as a product โ€” an AI that builds and maintains a markdown wiki from your notes and sources. MCP server + web UI, runs on free local models (Ollama), no API key needed. MIT.

    Community frankchu91
    aakarim

    ๐Ÿ“œ OpenLore

    A minimal, extensible, agent-native knowledge base that keeps shared context current and inspectable

    Community aakarim
    sv-grid

    @svgrid/mcp

    Native Svelte 5 data grid. Headless-first engine + drop-in render component. Row + column virtualization (1M rows), Excel-style filters, inline editing, grouping, pivot, server-side data. MIT core (@svgrid/grid), MCP server for Claude / Cursor. https://svgrid.com

    Community sv-grid
    cinderline

    NorthCinder

    Buyer-run, ad-neutral shopping-agent MCP software with deterministic ranking, signed purchase mandates, and a local audit trail.

    Community cinderline
    amanhij

    Zikkaron

    Biologically-inspired persistent memory engine for Claude Code. 26 cognitive subsystems, Hopfield networks, predictive coding, causal discovery, successor representations, all running locally over SQLite.

    Community amanhij