DEV Community

Cover image for Building for the Agentic Internet: The New Protocol Stack
Agbo, Daniel Onuoha
Agbo, Daniel Onuoha

Posted on

Building for the Agentic Internet: The New Protocol Stack

The internet is quietly growing a second interface layer — one built for AI agents instead of human clicks. By August 2026, at least ten commerce protocols and four coordination standards are live, and understanding where each fits is now a practical requirement for any backend developer shipping fintech, logistics, or e-commerce systems.

What Is the Agentic Internet?

The agentic internet refers to a web where autonomous AI agents — not humans clicking through pages — discover services, negotiate terms, and complete transactions on a user's behalf. Instead of a person browsing a checkout page, an agent reads structured data, calls an API, verifies payment authorization, and completes the purchase, often across several other agents it doesn't control.

This shift is happening at the protocol level: rather than every AI vendor building bespoke integrations with every merchant or tool, the industry has begun converging on a shared stack, similar to how HTTP standardized the human web.

The Four-Layer Protocol Stack

As of mid-2026, the agent protocol landscape has settled into distinct, complementary layers rather than one winning standard.

Layer Protocol Owner What It Does
Tool access MCP (Model Context Protocol) Anthropic → Linux Foundation Connects an agent to data, APIs, and tools
Agent coordination A2A (Agent2Agent) Google → Linux Foundation Lets independently built agents discover and delegate tasks to each other
Commerce/checkout UCP, ACP, Shopify Agents, Amazon Buy for Me Google+Shopify; OpenAI+Stripe; others Standardizes product discovery, cart, and checkout flows
Payments/authorization AP2, Stripe MPP, Mastercard Verifiable Intent, Visa Ready Google+Coinbase; Stripe+Tempo; card networks Cryptographic proof of who authorized a spend and how much

A useful mental model: MCP is how an agent reads your systems, A2A is how it talks to other agents, and UCP/ACP plus AP2 are how it actually buys something and proves it was allowed to.

Why This Matters for Fintech and Payments

This is the layer where payments expertise becomes directly relevant. AP2, the Agent Payments Protocol, centers on cryptographic mandates — verifiable, user-signed authorizations that scope exactly what an agent may spend, on what, and within what bounds, giving every party in a transaction a proof trail.

Stripe and Tempo's Machine Payments Protocol (MPP), launched in March 2026, provides a specification for agents and services to coordinate payments programmatically, enabling AI agents to autonomously make payments without a human in the loop.

Google's Universal Commerce Protocol (UCP), announced at NRF in January 2026, establishes a common language for agents, businesses, and payment providers so a single integration works across the entire shopping journey instead of requiring a custom connection per agent vendor. As of April 2026, UCP formally added A2A as a transport option alongside REST, MCP, and embedded APIs — meaning it now plugs directly into the coordination layer rather than living as an isolated commerce spec.

The Fragmentation Problem

The honest reality: none of the ten active commerce protocols currently interoperate with each other. A merchant supporting ChatGPT's shopping agents needs ACP (Stripe/OpenAI, Apache 2.0), a merchant optimizing for Google's AI Mode needs UCP, and one targeting Amazon's in-app agent needs a completely separate integration.

This mirrors the early API-sprawl era of fintech integrations — every payment gateway having its own auth and callback conventions — except now it's happening industry-wide, across dozens of AI platforms simultaneously.

The pragmatic response most engineering teams are taking is layered adoption: implement MCP first since it has the broadest tooling support (over 10,000 MCP servers already exist), add A2A if you need multi-agent coordination, and pick commerce protocols based on where your actual customers' agents originate — Google ecosystem, OpenAI ecosystem, or a specific card network's program.

How to Start Building for the Agentic Internet

1. Expose your existing APIs through MCP.
If you already have REST endpoints for account data, order status, or inventory, wrapping them in an MCP server is the fastest way to make your system agent-readable without redesigning your backend.

2. Add structured, machine-readable discovery.
Agents rely on structured product feeds and "Agent Cards" (JSON capability descriptors) rather than scraping HTML — publishing this metadata is now as important as your public API docs.

3. Decide your commerce protocol based on channel, not preference.
If your app processes payments that ChatGPT-based agents might initiate, ACP with Stripe is the direct path; if Google Search/AI Mode visibility matters more, UCP is the better fit.

4. Build authorization mandates, not blanket API keys.
Whatever payment protocol you choose, model your authorization layer around scoped, auditable permissions (what, how much, until when) — this is the core idea behind AP2 and Visa's Verifiable Intent, and it's good practice even before full protocol adoption.

5. Treat agent traffic as a first-class client, not an edge case.
Add logging and rate-limiting specifically for agent-originated requests early, since agent traffic patterns (bursty, programmatic, unattended) differ from human browsing sessions.

What's Still Unsettled

The Agentic Commerce Protocol reached its v1.0 stable release in April 2026 with over 165 supporting organizations and joined the Linux Foundation's Agentic AI Foundation as a hosted project in August 2026 — a sign of real convergence, but the payments and checkout layer is still consolidating faster than the underlying trust and identity layer.

For a backend team today, the safest bet is building on MCP and A2A now, since both have Linux Foundation backing and broad multi-vendor support, while treating the commerce-specific protocols (UCP, ACP, MPP) as pluggable adapters you can swap or run in parallel as the market picks winners.

Top comments (0)