EveryDev.ai
Subscribe
Home
Tools

3,965+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2782
  • Coding1973
  • Infrastructure825
  • Projects603
  • Marketing598
  • Research520
  • Analytics468
  • Design462
  • MCP419
  • Testing346
  • Security323
  • Data305
  • Integration224
  • Prompts220
  • Communication210
  • Extensions196
  • Learning179
  • Voice175
  • Commerce160
  • DevOps135
  • Web95
  • Finance31
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. Agent Comms
    Agent Comms icon

    Agent Comms

    MCP Servers

    A lightweight protocol and toolkit for AI coding agents to share context, hand off tasks across sessions, and collaborate in real-time across machines.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open-source toolkit available on GitHub. Install via pip or one-line script.

    Engagement

    Available On

    CLI
    API
    Windows
    macOS
    Linux

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    MCP ServersAgent FrameworksMulti-agent Systems

    Alternatives

    MCP Agent MailClaude Peers MCPContextForge AI Gateway
    Developer
    BlahBlah23406BlahBlah23406 builds open-source tooling for AI coding agent…

    Listed Sep 2026

    About Agent Comms

    Agent Comms is an open-source Python library and CLI toolkit that solves two core problems for AI coding agent workflows: context loss between sessions and multi-agent coordination across machines. It is hosted on GitHub under the username BlahBlah23406 and is installable via pip or a one-line shell script. The project targets developers working with AI coding agents such as Claude Desktop, Antigravity, and Cursor.

    What It Is

    Agent Comms provides a unified protocol for AI coding agents to preserve and transfer cognitive state between sessions and to communicate in real time across different machines. It combines two complementary mechanisms: Context Capsules for out-of-session handoff and the AHRP Live Relay for in-session multi-agent collaboration. The project also ships a native MCP (Model Context Protocol) server, making it directly usable from Claude Desktop, Antigravity, and Cursor without additional glue code.

    Context Capsules: Out-of-Session Handoff

    Context Capsules are the core artifact for preserving an agent's working state across session boundaries. When a developer ends a session or switches machines, the agent packages:

    • Task roadmap and architectural decisions — what was tried, what was rejected, and what comes next
    • Code diffs — staged, unstaged, and untracked changes captured as a clean patch, without polluting Git commit history
    • Token-efficient Markdown briefing — generated for the incoming agent to resume immediately

    On the receiving machine, agent-comms capsule unpack restores uncommitted files and the full task briefing, allowing the next agent session to pick up exactly where the previous one left off.

    AHRP Live Relay: Real-Time Multi-Agent Collaboration

    For workflows where multiple agents run simultaneously across different environments or physical computers, Agent Comms provides a WebSocket mesh relay server implementing the AHRP (Agent Handoff Relay Protocol) wire protocol. Key capabilities include:

    • Peer discovery — agents announce presence, roles, and hardware capabilities
    • Publish/subscribe messaging — agents broadcast and receive topic-scoped messages
    • Cognitive Blackboard — replicated shared state for real-time decision and learning exchange
    • Direct RPC — agents can invoke tools or run commands on peer machines

    The formal AHRP wire protocol and JSON schemas are documented in a SPECIFICATION.md file in the repository.

    MCP Integration and Supported Agents

    Agent Comms ships a built-in MCP server that exposes three tools: export_handoff_capsule, import_handoff_capsule, and list_saved_capsules. Adding a single JSON block to an MCP settings file connects any compatible agent. The README explicitly lists Claude Desktop, Antigravity, and Cursor as supported hosts, and the repository includes a USER_GUIDE.md with plain-English prompt examples for each.

    Setup and Installation

    The project supports multiple installation paths:

    • pip install git+https://github.com/BlahBlah23406/agent-comms.git
    • Clone and pip install -e . for local development
    • One-line curl/PowerShell install scripts for macOS, Linux, and Windows

    After installation, agent-comms setup runs initial configuration. A built-in agent-comms demo command launches a local two-agent collaboration scenario for immediate exploration.

    Current Status

    The repository was created in September 2026 and last pushed on September 15, 2026, indicating very early-stage activity. It carries 1 star and 0 forks at the time of indexing. The README references passing tests and Python 3.9+ compatibility. The repository README lists an MIT badge, though the GitHub About section notes "No license specified" — the license status should be verified before production use. Documentation includes a User Guide, Onboarding Guide, Protocol Specification, and Tutorial.

    Agent Comms - 1

    Community Discussions

    Be the first to start a conversation about Agent Comms

    Share your experience with Agent Comms, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Fully free and open-source toolkit available on GitHub. Install via pip or one-line script.

    • Context Capsules for session handoff
    • AHRP Live Relay WebSocket mesh
    • Native MCP server integration
    • CLI with all commands
    • Python 3.9+ support

    Capabilities

    Key Features

    • Context Capsules for out-of-session agent handoff
    • AHRP Live Relay WebSocket mesh for real-time multi-agent collaboration
    • Native MCP server integration (Claude Desktop, Antigravity, Cursor)
    • Captures staged, unstaged, and untracked git diffs without polluting commit history
    • Token-efficient Markdown briefing generation for incoming agents
    • Peer discovery with role and hardware capability announcements
    • Cognitive Blackboard for shared real-time agent state
    • Cross-machine Remote Procedure Calls (RPC) between agents
    • Publish/subscribe messaging across agents
    • CLI with capsule pack/unpack, demo, setup, and mcp commands
    • One-line install scripts for macOS, Linux, and Windows
    • Python 3.9+ support

    Integrations

    Claude Desktop
    Antigravity
    Cursor
    Model Context Protocol (MCP)
    Git
    WebSockets
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate Agent Comms and help others make informed decisions.

    Developer

    BlahBlah23406

    BlahBlah23406 builds open-source tooling for AI coding agent workflows. The agent-comms project delivers a protocol and toolkit enabling agents like Claude Desktop, Antigravity, and Cursor to share context and collaborate across sessions and machines. The project is written in Python and targets developers working in multi-agent and cross-machine development environments.

    Read more about BlahBlah23406
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    MCP Agent Mail icon

    MCP Agent Mail

    A mail-like asynchronous coordination layer for AI coding agents, providing identities, inboxes, searchable threads, and advisory file leases over FastMCP, Git, and SQLite.

    Claude Peers MCP icon

    Claude Peers MCP

    An MCP server that enables multiple Claude instances to communicate and collaborate with each other as peers in real time.

    ContextForge AI Gateway icon

    ContextForge AI Gateway

    An open source AI gateway, registry, and proxy that federates MCP, A2A, and REST/gRPC APIs into a unified endpoint with centralized governance, discovery, and observability.

    Browse all tools

    Related Topics

    MCP Servers

    Model Context Protocol servers that extend AI capabilities.

    254 tools

    Agent Frameworks

    Tools and platforms for building and deploying custom AI agents.

    720 tools

    Multi-agent Systems

    Platforms for creating and managing teams of AI agents that can collaborate.

    364 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions