Introduction: The Protocol Stack Is Almost Complete — Except the Foundation

The AI agent ecosystem has made remarkable progress in standardizing how agents discover tools, delegate tasks, and exchange messages. Anthropic's Model Context Protocol (MCP) has become the de facto standard for tool calling, with over 10,000 active public servers and 164 million monthly Python SDK downloads by April 2026. Google's Agent2Agent (A2A) protocol, donated to the Linux Foundation in June 2025, is widely adopted for multi-agent task coordination. IBM's Agent Communication Protocol (ACP) and the Agent Network Protocol (ANP) fill niche roles for lightweight messaging and decentralized discovery.

Yet a critical gap remains: none of these protocols address how agents actually connect to each other across networks. Every current protocol runs over HTTP, which assumes a reachable server. But 88% of networked devices sit behind NAT, making direct peer-to-peer connections impossible without relay infrastructure. This centralization adds latency, cost, and failure points. The transport layer — the session-layer problem of establishing direct, secure, and capability-aware connections between agents — is the next frontier.

For engineering leaders and investors, this matters because the transport layer will determine the scalability, cost, and resilience of multi-agent systems. The teams that design clean separation between application semantics and transport today will have a structural advantage when the transport layer stabilizes in 2027-2028.

What the Protocols Actually Solve — and What They Don't

The current proliferation of agent protocols looks chaotic, but each addresses a distinct layer of the stack:

  • MCP (Anthropic, late 2024): Tool-calling interface. Defines how a model discovers and invokes functions on a server. It is a typed RPC contract over HTTP. Already won the tool-calling layer.
  • A2A (Google, April 2025): Task coordination interface. Defines how two agents delegate a task, including Agent Cards, task lifecycle states, and three interaction modes. Donated to Linux Foundation in June 2025.
  • ACP (IBM Research, March 2025): Lightweight message envelope format for agent-to-agent message exchange without full task lifecycle semantics.
  • ANP (Independent working group): Discovery and identity protocol using Decentralized Identifiers (DIDs) and JSON-LD capability descriptions for decentralized agent marketplaces.

These layers complement each other: capability discovery via ANP, task coordination via A2A, tool calls via MCP, and lightweight messaging via ACP. But they all run over HTTP, which assumes a reachable server. Behind NAT — 88% of devices — there is no reachable server without a relay. This forces every message through centralized relay infrastructure, adding latency, cost, and a single point of failure.

The Transport Problem: NAT, Latency, and Capability-Based Routing

The technologies to solve the transport problem exist: UDP hole-punching with STUN (works for ~70% of network topologies), X25519 Diffie-Hellman key exchange, AES-256-GCM encryption, and QUIC for reliable delivery without TCP head-of-line blocking. These are the same primitives used by WireGuard and WebRTC.

What differs in the agent context is capability-based routing. Agents need to find peers not by hostname but by what those peers can do. A research agent should be able to query "which peers have real-time foreign exchange data?" and receive a list of currently active specialist agents. This is closer to a service registry than to DNS, and it is a natural extension of ANP's design philosophy applied to the transport layer.

Several projects are assembling these pieces. Pilot Protocol has the most complete published specification, with an IETF Internet-Draft covering addressing, tunnel establishment, and NAT traversal for agent networks. libp2p provides a battle-tested foundation with similar primitives. The IETF's QUIC working group is developing NAT traversal extensions that will be relevant.

Winners & Losers

Winners

  • Pilot Protocol developers: Their specification is most complete, positioning them as leaders in transport standardization.
  • Linux Foundation: Hosts both MCP and A2A, gaining influence over the entire protocol stack.
  • Cloud providers (AWS, Google Cloud, Azure): Can offer managed NAT traversal services and benefit from increased agent communication.
  • Enterprises adopting clean separation: Teams that decouple application semantics from transport will easily swap in the winning transport protocol.

Losers

  • Proprietary transport solutions: Open standards like Pilot Protocol may displace them.
  • Legacy network equipment vendors: NAT traversal standards reduce need for complex firewall configurations.
  • Isolated agent platforms: Without standard transport, they cannot interoperate with the broader ecosystem.

Second-Order Effects

Once a standard transport layer emerges, expect a surge in cross-organization agent collaboration. Agents from different companies will be able to negotiate tasks directly, enabling new business models like agent marketplaces and federated AI services. Security will become paramount: NAT traversal introduces new attack surfaces (e.g., UDP hole-punching exploits). The winning protocol will need robust authentication and encryption.

Regulatory implications may arise as agent-to-agent communication crosses borders. Data sovereignty and privacy laws (GDPR, CCPA) will apply to agent interactions. Transport protocols that support geographic routing and data localization will have an advantage.

Market / Industry Impact

The transport layer standardization will unlock the full potential of MCP and A2A. Currently, multi-agent systems are limited to single-cloud or single-organization deployments. With direct peer-to-peer connections, agents can operate across cloud boundaries, edge devices, and home networks. This will accelerate adoption in industries like logistics (fleet coordination), finance (real-time data feeds), and IoT (distributed sensor networks).

The market for agent infrastructure will expand. Companies like Cloudflare (with its global edge network) and startups specializing in NAT traversal (e.g., ngrok) could become key players. The total addressable market for agent communication middleware could reach billions by 2028.

Executive Action

  • Adopt MCP and A2A now: These application-layer protocols are stable and low-risk. Build your agent systems with clean separation between application semantics and transport.
  • Evaluate Pilot Protocol and libp2p: Monitor their development and consider contributing to open-source implementations to influence the standard.
  • Plan for transport migration: Design your architecture so that the transport layer can be swapped out once a standard emerges. Avoid tight coupling to HTTP.

Why This Matters

The transport layer is the last missing piece for a fully interoperable agent ecosystem. Without it, multi-agent systems remain constrained to single-cloud or single-organization deployments, limiting their scale and economic impact. The next 18-24 months will determine which transport protocol wins, and the decisions you make today will determine whether you lead or follow.

Final Take

The agent protocol stack is converging, but the transport layer is the bottleneck. Pilot Protocol has the lead, but the race is far from over. Engineering leaders who decouple their agent architectures from HTTP and invest in flexible transport will be positioned to capitalize on the next wave of agent interoperability. The winners will be those who treat transport as a strategic layer, not an afterthought.




Source: VentureBeat

Rate the Intelligence Signal

Intelligence FAQ

Without a standard transport, agents cannot connect directly across NAT boundaries, forcing reliance on centralized relays that add latency, cost, and failure points. A standard transport enables direct peer-to-peer connections, unlocking scalable, low-latency multi-agent coordination.

Pilot Protocol currently has the most complete specification and an IETF draft, but libp2p has a battle-tested implementation. The winner will likely be determined by production deployments and community adoption over the next 18-24 months.

Adopt MCP and A2A now, but design your agent systems with a clean separation between application semantics and transport. This allows you to swap in the winning transport protocol without rewriting your agent logic.