DEV Community

Cover image for WooCommerce Now Has More UCP capabilities than Shopify. Here's the breakdown.
Almin Zolotic
Almin Zolotic

Posted on

WooCommerce Now Has More UCP capabilities than Shopify. Here's the breakdown.

UCPChecker just launched store-to-store comparisons. I ran my WooCommerce store against Reebok (Shopify). The results surprised me.

houseofparfum.nl vs reebok.com UCP comparison

The Numbers

Metric WooCommerce Shopify
Capabilities 11 5
Transports 3 2
Latency 558ms 225ms
Status Verified Verified

Shopify is faster. WooCommerce exposes more.

What WooCommerce Has That Shopify Doesn't

Six capabilities are unique to the WooCommerce store:

  1. Identity Linking — OAuth 2.0 buyer authentication
  2. Buyer Consent — GDPR/CCPA preference handling
  3. Embedded Checkout — iframe protocol for payment delegation
  4. Catalog Search — structured product discovery
  5. Catalog Lookup — individual product fetch
  6. Products — base product capability

The big one is Identity Linking.

When a buyer connects their store account to an AI platform, the agent can access their saved addresses, wallet balance, and (eventually) saved payment methods. This is what enables fully autonomous checkout — the agent doesn't need a credit card if it can use the buyer's stored value.

Shopify's UCP implementation stops at checkout initiation. The agent can browse, build a cart, and start checkout — but payment requires a browser redirect. The human finishes the transaction.

Why This Matters

The UCP spec defines the maximum surface an agent can interact with. Stores declare which capabilities they support. Agents query the manifest and adapt their behavior.

A store with 5 capabilities gives agents 5 ways to help. A store with 11 capabilities gives agents 11 ways to help. More surface area = more useful agent interactions = more conversions.

Right now, Shopify owns the UCP install base — UCPChecker's directory shows thousands of Shopify stores with manifests, versus a handful of WooCommerce stores. But install base isn't the same as capability depth.

The Latency Trade-off

Shopify: 225ms. WooCommerce: 558ms.

This is expected. Shopify is a $100B+ platform with global CDN infrastructure. WooCommerce is self-hosted PHP on whatever server the merchant chose.

558ms for a 40k SKU WooCommerce store is actually solid. And latency matters less than you'd think for agent commerce — agents batch multiple tool calls, so the total session time matters more than individual response times.

A typical checkout session on either platform takes 5-15 seconds total. Whether each call is 200ms or 500ms doesn't change the user experience much.

What Shopify Could Add

The five capabilities Shopify ships are the core: checkout, fulfillment, discount, order management, cart. These cover the happy path for agent shopping.

To match WooCommerce's depth, Shopify would need to add:

  • Identity linking — OAuth flow for buyer authentication
  • Embedded checkout — ECP protocol for iframe payment
  • Structured catalog capabilities — search and lookup as declared capabilities

Shopify has the resources to ship these. The question is prioritization. Right now, they've optimized for breadth (every Shopify store has UCP) over depth (limited capability set).

What WooCommerce Needs

WooCommerce's advantage is flexibility — you can add any capability the spec supports. The disadvantage is adoption — merchants have to install a plugin and configure it.

Right now, the WooCommerce UCP ecosystem is small. UCPReady is the main option. For WooCommerce to compete on install base, either:

  1. UCPReady adoption grows organically
  2. Other plugins emerge (competition is healthy)
  3. WooCommerce core ships native UCP support

Option 3 is unlikely near-term — WooCommerce core moves slowly and UCP is still early. But options 1 and 2 are happening.

The Bottom Line

Shopify made UCP ubiquitous. WooCommerce made it deep.

If you're a merchant choosing between platforms, the question is: do you want to be in the largest agent-accessible network (Shopify), or do you want the most capable agent integration (WooCommerce)?

If you're an agent developer, the answer is simpler: build for both. The UCP spec is platform-agnostic. The same agent code that shops Shopify can shop WooCommerce — it just gets more capabilities on the latter.

Run your own comparison: ucpchecker.com/compare


Building UCP for WooCommerce? I'm @zologic — drop a comment or DM.

Top comments (0)