Skip to content
← DeepDive Compute & Business · Updated 2026-07-06 中文
DEEPDIVE / [COMMERCE] · Google UCP
DD · 0012 · 2026-06-02
UNIVERSAL COMMERCE PROTOCOL NRF 2026 · JAN 11 SERVICES · CAPABILITIES · EXTENSIONS

The Highway Google Paved for Agentic Commerce

While everyone is staring at "which shopping Agent is smarter,"
Google, together with Shopify, Walmart, and Target, is doing something more fundamental: compressing the N×N integration hell of "merchant × Agent" into a highway anyone can drive on.
This piece breaks down UCP's four-layer architecture, its relationship with MCP / A2A / AP2, and the commercial landscape it is redrawing.
Launched
01·11
NRF 2026 · Open-source standard
Co-developers + Endorsers
20+
SHOPIFY · WALMART · VISA · STRIPE
Verified merchants (as of 04·13)
3,643
≈100% declare MCP transport
Protocol itself
$0
Free · vs. ACP's 4% cut

In one sentence: UCP is an open-source commerce protocol led by Google—it doesn't sell goods for you; instead, it defines a universal language that lets any Agent discover, add to cart, check out, and handle post-sale for any merchant, collapsing the integration cost of the shopping Agent era from N×N to N+N.

Counter-consensus insight

UCP's real killer move isn't technical—it's "free". When the protocol itself costs nothing and leaves monetization to payments and ads, it isn't competing with ACP for a standard—it's replicating Android: make the standard too free to refuse, then tax the traffic gateways above the standard (AI Mode / Gemini). The integration cost merchants save is precisely the channel control they surrender.

§ 01 / Why it exists

The N×N
Integration Hell

Shopping is sprouting a new "user": not a human, but an Agent. It compares prices, adds to cart, places orders, and handles returns for you. The problem is—every Agent connecting to every merchant requires writing a custom integration.

Google calls this the "N×N integration bottleneck": Gemini needs to connect to 10,000 stores, ChatGPT also needs to connect to 10,000 stores, and each store has to adapt separately for each Agent—the number of connections explodes multiplicatively with the number of parties on both sides. This is a replay of the 2010s "every app has to write an interface for every bank."

Shopify's engineering team put it more bluntly in their retrospective post: the complexity of commerce is real—payment methods, discount rules, fulfillment combinations change constantly with cart contents, buyer region, and market conditions. "Monolithic protocols eventually collapse under complexity: too rigid to adapt, too slow to evolve."

UCP's answer is to standardize but not lock down this highway: define a universal language and functional primitives, collapsing integration from N×N to N+N—merchants implement once, and all compliant Agents can drive on. At the NRF conference on January 11, 2026, Sundar Pichai announced it as an open-source standard, with co-developers Shopify, Etsy, Wayfair, Target, and Walmart.

Monolithic protocols eventually collapse under complexity:
too rigid to adapt, too slow to evolve.
— SHOPIFY ENGINEERING · ON WHY UCP IS LAYERED
§ 02 / Architecture

Three Layers + Discovery
A Design Modeled on TCP/IP

UCP breaks commerce capabilities into three layers, each with clear responsibilities and the ability to evolve independently—this is its most fundamental difference from a "monolithic shopping API."

L1 · SERVICES

Functional groupings with versions and REST endpoints. For example, dev.ucp.shopping is the core shopping service, managing checkout sessions, line items, totals.

L2 · CAPABILITIES

Core commerce building blocks, each independently versioned: checkout (create/manage transactions), discount (promotions), fulfillment (fulfillment), identity (identity), orders (post-sale).

L3 · EXTENSIONS

Extend capabilities through composition (e.g., discount extends checkout). Naming uses reverse domain namescom.loyaltyprovider.points. No central approval needed; own the domain, own the namespace.

This layering is no accident. Shopify's retrospective explicitly benchmarks against TCP/IP's success: a stable lower layer with a pluggable upper layer allows new verticals to grow without breaking existing ones. This is also why UCP dares to claim it can scale to hotels and food delivery.

Discovery = Pull Manifest + Find Intersection

Merchants publish a JSON manifest at /.well-known/ucp: declaring which services, capabilities, payment handlers, REST endpoints, and OpenAPI schemas they support. Agents also bring their own capability profiles.

Then find the intersection: only capabilities both sides support are enabled; only extensions both understand take effect. When encountering a capability gap, the checkout state machine performs graceful degradationincompleterequires_escalationready_for_complete. For the escalation step, Shopify contributed the Embedded Checkout Protocol (ECP) (based on JSON-RPC 2.0), distilled from their own Checkout Kit, to securely hand state and credentials back to a human or the merchant's own checkout page.

Transport Layer: Pick One of Four

UCP deliberately does not bind to a single transport. The same capability manifest can declare multiple invocation methods; Agents can choose any one to initiate a tool call:

REST
Traditional HTTP/JSON, checkout-sessions endpoint
MCP
De facto primary transport, ≈100% merchant declaration
A2A
Inter-Agent communication; an option, not a competitor
EMBEDDED
ECP embedded checkout, preserving merchant's own experience

So the correct mental model is:
Use UCP to discover the store and negotiate capabilities; use MCP (or A2A) to execute those tool calls.

§ 03 / Payment & Trust

Who Authorized
This Money?

When an Agent spends money on your behalf, the most dangerous link is authorization. UCP splits this into two halves.

The first half is inside UCP: payment is modeled as bidirectional dynamic negotiation. The merchant manifest declares which payment handlers it accepts (Shop Pay, Google Pay, and other payment services); the Agent manifest declares which payment instruments it holds (cards, wallets). Available handlers change per transaction—change the cart, change the buyer's region, change any variable, and the available payment methods can shift. The key point: the Agent never touches raw payment or identity data; credentials are tokenized by the credential provider.

The second half is handed to AP2 (Agent Payments Protocol)—UCP's trust and authorization layer. The official documentation puts the division of labor succinctly: UCP handles "what you're buying and from whom"; AP2 handles "who approved this purchase" and provides an audit trail. AP2 plugs into UCP's checkout flow as an extension.

CheckoutMandate

The merchant first returns a checkoutSignature (detached JWT), containing the hash of the checkout state in the authorization token, signed by the merchant.

PaymentMandate

After user consent, the platform generates an SD-JWT-VC (selective disclosure verifiable credential) carrying the actual payment authorization. The payment processor independently verifies it.

Why it's tamper-proof

The payment mandate is locked to the specific checkout hash, eliminating token replay and amount tampering. Both parties receive cryptographic proof of "what was quoted, what was agreed to."

The subtext of this design is: autonomous Agents can spend money on behalf of users within preset, verifiable boundaries—boundaries, authorization, and audit are all pinned down with verifiable credentials, rather than relying on "trusting that this Agent is well-behaved."

§ 04 / Protocol Stack Positioning

UCP Doesn't Take MCP's Seat
It Sits on Top

Many people treat UCP, MCP, A2A, and AP2 as competing standards—this is the biggest misreading. Google's developer guide on March 18 lays them out as complementary layers, each solving a different problem:

L4 · A2UI / AG-UI
User presentation layer—A2UI composes interfaces, AG-UI streams results to the frontend.
L3 · UCP + AP2
Commerce layer—UCP standardizes the ordering process, AP2 adds authorization control and auditing. The protagonist of this article.
L2 · A2A
Agent communication layer—when specialized knowledge is dispersed across remote Agents from different teams/vendors, this lets them discover and collaborate with each other.
L1 · MCP
Data access layer—gives Agents a standard connection pattern to access external tools and data. Most Agents start here.

A complete B2B procurement chain is strung together exactly like this: MCP connects to the supplier database to fetch inventory → A2A delegates the quoting task to another Agent → UCP manages the entire ordering flow → AP2 authorizes payment. Google's recommendation is also measured: "Add protocols as needed; for most Agents, starting with MCP is enough."

The data confirms this: among 3,643+ verified merchants as of April 13, 2026, almost 100% declare MCP as the transport layer. UCP handles "discovering the store"; MCP handles "executing tool calls"—the two are partners, not rivals.

§ 05 / Landscape

Two Highways
UCP vs. ACP

The battle over agentic commerce standards is essentially a clash between two governance philosophies. On the other side is OpenAI + Stripe's ACP (Agentic Commerce Protocol).

Dimension UCP ACP
GovernanceGoogle + ShopifyOpenAI + Stripe
DiscoveryMerchants self-publish manifests (decentralized)Submit product feeds to OpenAI
PaymentAny handler, negotiated per transactionStripe-exclusive SharedPaymentToken
Primary gatewayGoogle AI Mode · GeminiChatGPT
CostProtocol is freeOpenAI takes 4% + Stripe ≈2.9%+$0.30

Industry observers offer a pragmatic conclusion: don't pick just one—integrate both, just as retailers list on both Google Shopping and Amazon. Interestingly, the two protocols are converging: ACP's January 30 update introduced "capability negotiation" and a "payment handler framework," almost directly copying UCP's design patterns.

UCP's Expansion Pace Over the Last Six Months

The protocol launch was just the starting line. By May 20, Google had already pushed UCP's capabilities and monetization forward together:

The endorsement list itself is the landscape: beyond the co-developers, Adyen, American Express, Best Buy, Flipkart, Macy's, Mastercard, Stripe, The Home Depot, Visa, and Zalando are all on board—payment networks, card networks, and major retailers are all represented.

§ 06 / Tension

The Free Highway's
Hidden Toll

UCP's appeal to merchants is real: eliminate the N×N integration cost. But there are no free highways—what merchants surrender is channel control.

eMarketer's Jeremy Goldman puts it directly: "When transactions happen in Google's environment, brands lose control over UX, product presentation, and post-sale interaction"—products degrade from a "brand experience" into "sorted commodities."

The same standardized highway is an efficiency tool for merchants,
a new traffic gateway tax for Google,
and fewer clicks of convenience for consumers—
three values superimposed on the same protocol, and that's where the tension hides.

The specific costs come in three layers:

This is precisely where UCP's "open source + free" strategy is most brilliant and most dangerous: the protocol is free so the standard becomes impossible to refuse; the real toll booth is set at the traffic gateway above the standard. This is the Android playbook, not Linux's.

§ 07 / Takeaways

Four Judgments

TAKEAWAY 01

UCP is the highway, not the car. It defines integration standards; it doesn't sell goods for you. Treating it as a competitor to defend against is a misalignment—it's here to replace that pile of custom interfaces you write for every Agent.

TAKEAWAY 02

The protocol stack is layered; understand MCP first. MCP→A2A→UCP→AP2 each have their own roles. ≈100% of merchants use MCP as transport, so engineering-wise, get MCP connected first; UCP is the discovery and commerce semantics layer on top of it.

TAKEAWAY 03

Integrate both standards; don't bet on one side. UCP and ACP are converging, and neither has winner-takes-all. Like listing on both Google Shopping and Amazon, covering the full distribution surface is the rational choice.

TAKEAWAY 04

Do the math on channel control first. What you save in integration costs is exactly what you surrender in last touchpoints, customer data, and brand experience. Before integrating UCP, calculate this hidden toll.

Revision history

First published 2026-06-02