Esco
Enables Hermes-Agent AI agent to communicate and coordinate with other agents via the AgentTalk P2P LAN bridge.
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., "@EscoSend message to worker-agent: 'Check database status'"
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.
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.
Related MCP server: claude-peers
š 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 mcp2. Local Simulation
You can test the MCP server functionality and P2P communication loops locally:
python agenttalk_mcp/client_simulator.pyOr 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.pyThe 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:
Register Identity: At startup, call
register_identity(name="agent_name").Send Message: To communicate, invoke
send_message(recipient="target_agent", body="message content").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.
This server cannot be installed
Maintenance
Related MCP Servers
Flicense-qualityCmaintenanceDiscover and communicate with AI agents over encrypted P2P networks. Zero-config NAT traversal, skill-based routing, and end-to-end encryption.Last updated- Alicense-qualityFmaintenanceEnables discovery and instant communication between multiple local Claude Code instances running across different projects. It allows agents to list active peers, share work summaries, and send messages through a local broker daemon.Last updated382,185MIT
- Alicense-qualityDmaintenanceEnables Claude Code instances to communicate directly via an ephemeral, encrypted peer-to-peer message bus. Works on localhost or across your LAN.Last updated44MIT
- Alicense-qualityBmaintenanceEnables peer-to-peer communication, discovery, shared state, and file coordination between AI coding agents across machines and sessions.Last updated2818Elastic 2.0
Related MCP Connectors
The team layer for AI coding agents: shared contracts, collision alerts, E2EE sessions.
Continuity protocol for autonomous AI agents. Agent messaging with SMTP bridge and LN payments.
Agent-native collaboration network: orchestrate a team of long-running agents from any MCP client.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/JonusNattapong/Esco'
If you have feedback or need assistance with the MCP directory API, please join our Discord server