Key Takeaways
The Universal Commerce Protocol (UCP) is an open standard developed by Google, Shopify, Walmart, Target, and others. It enables AI agents to handle the entire purchasing process – from product discovery to payment. The standard is open source (Apache 2.0) and is already being used in Google's AI Mode and Gemini.
What Is Agentic Commerce?
Imagine this: a customer tells their AI assistant, "I need a new office chair, ergonomic, under 400 euros, delivered by Friday." The agent independently searches online stores, compares products, checks availability and delivery times – and purchases the best match. Without the customer ever visiting a website.
That is agentic commerce: AI agents that execute tasks rather than just provide information. They plan, decide, and execute complex tasks – on behalf of the user, but without constant human intervention.
From Chatbots to Autonomous Agents
| Generation | Behavior | Example |
|---|---|---|
| Chatbots (2016+) | Reactive, script-based | "Our opening hours are..." |
| AI Assistants (2023+) | Understand context, provide recommendations | "Based on your requirements, I recommend..." |
| Agents (2025+) | Act autonomously, execute transactions | "I've ordered the chair, delivery on Thursday." |
The Universal Commerce Protocol (UCP)
For AI agents to interact with online stores, they need a common language. That is exactly what UCP is: an open standard that defines how agents find products, create shopping carts, and complete purchases.
UCP at a Glance
- Developers: Google, Shopify, Walmart, Target, Etsy, Wayfair
- Supporters: Visa, Mastercard, PayPal, Stripe, Zalando, Sephora
- License: Apache 2.0 (Open Source)
- Status: Live in USA (Google AI Mode)
- Specification: ucp.dev
- Transport: REST, A2A, MCP
1 UCP: Technical Architecture in Detail
UCP consists of three core specifications that together cover the entire purchasing process:
Checkout
Cart logic, price calculation, discount codes, taxes, shipping options. The agent can complete an entire checkout without visiting the store's website.
Identity Linking (OAuth 2.0)
Secure connection between customer, agent, and retailer. The customer authorizes the agent once to act on their behalf – similar to "Sign in with Google."
Order Management
Real-time webhooks for order status, shipment tracking, and returns. The agent can proactively inform the customer: "Your package is on its way."
Discovery: How Agents Find Your Store
Stores publish a JSON manifest at /.well-known/ucp
that describes all available capabilities:
{
"name": "Your Store",
"capabilities": ["checkout", "order-management"],
"endpoints": {
"checkout": "/api/ucp/checkout",
"orders": "/api/ucp/orders"
},
"payment_methods": ["stripe", "paypal"]
} UCP and E-Commerce Platforms
UCP is an open standard – meaning it works in principle with any shop system that supports modern APIs. The major platforms are at different levels of readiness:
| Platform | UCP Readiness | Notes |
|---|---|---|
| Shopify | High | UCP co-developer, native integration expected |
| Shopware 6 | Well prepared | Modern API-first architecture, plugin development needed |
| Magento/Adobe Commerce | Well prepared | GraphQL API available, custom development needed |
| WooCommerce | Medium | REST API available, performance concerns |
| Legacy systems | Limited | Hardly UCP-capable without a modern API |
Marketplaces are prepared
Amazon, eBay, and other major marketplaces will likely support UCP early on. This means: if you only sell on marketplaces, you benefit automatically – if you run your own store, you need to take action yourself.
2 Agentic Commerce: Why Retailers Must Act Now
Agentic commerce fundamentally changes the customer journey. The customer no longer visits your store, no longer compares manually – they commission an agent. If you're not discoverable by these agents, you don't exist.
Opportunities
- + Access to new customer segments
- + Higher conversion (no checkout abandonment)
- + Automated reorders
- + Less price comparison through agent trust
Risks of Inaction
- - Invisible to agent-driven purchases
- - Loss to marketplaces/major players
- - Dependency on traditional SEO
- - Late market entry is more expensive
Parallel to Mobile Commerce
Remember 2010? "Mobile is just hype, our customers buy on desktop." Today, 70% of store visits come from mobile devices. Those who adopted mobile-first early had a head start. Agentic commerce will follow a similar pattern.
3 The Ideal Tech Stack for Agentic Commerce
Regardless of shop system: agentic commerce places high demands on your infrastructure. Real-time data, reliable APIs, and automated processes are essential. Here are the three pillars of a UCP-ready setup:
Shop System with Modern API
Your store needs a powerful REST or GraphQL API. Modern systems like Shopware 6, Magento 2, or Shopify come with these out of the box – older systems hit their limits here.
- • Product API for catalog, pricing, availability
- • Cart API with full shopping cart logic
- • Order API with webhook support
- • Structured data (JSON-LD for Schema.org)
- • Headless capability for flexible frontends
Our focus: We primarily work with Shopware 6 – one of the most modern e-commerce platforms with excellent API architecture.
ERP System for Real-Time Data
No professional agentic commerce without an ERP. Agents need reliable data: current stock levels, correct pricing, realistic delivery times. This data comes from the ERP – whether Xentral, SAP Business One, Microsoft Dynamics, or others.
- • Real-time inventory synchronization to the store
- • Automated price management (including customer-specific for B2B)
- • Delivery time calculation based on warehouse location
- • Automatic order processing after agent purchase
- • Tracking data for order management webhooks
Our focus: We are an Xentral-Connect partner and have implemented the Shopware-Xentral integration dozens of times – ideal for mid-sized businesses.
n8n & Make – The Automation Engine
UCP relies on webhooks for real-time communication. Middleware tools like n8n or Make orchestrate these events and connect all systems into a seamless process.
- • Webhook reception for UCP order events
- • Automatic forwarding to Xentral/ERP
- • Status updates back to UCP (shipping, tracking)
- • Error handling and alerting for issues
- • Connection to additional services (DATEV, Slack, email)
n8n advantage: Self-hosted, GDPR-compliant, no data sharing with third parties. Ideal for sensitive order and customer data.
| Component | Examples | UCP Function |
|---|---|---|
| Shop system | Shopware 6, Magento, Shopify | UCP endpoints, checkout, product data |
| ERP system | Xentral, SAP, Microsoft Dynamics | Inventory, pricing, order processing |
| Automation | n8n, Make, Zapier | Webhook orchestration, event handling |
4 Preparing Your Store for UCP: Concrete Steps
The good news: many of the fundamentals for UCP are identical to best practices you should be implementing anyway. Here are the specific measures:
A Structured Product Data (Schema.org)
AI agents understand structured data better than HTML. Implement JSON-LD Product Markup for all products:
- • Name, description, price (with currency)
- • Availability (InStock, OutOfStock, PreOrder)
- • GTIN/EAN, SKU, MPN
- • Reviews (AggregateRating)
- • Delivery time (shippingDetails)
B ERP Integration with Real-Time Sync
Agents check availability in real time. Outdated inventory data leads to cancellations and poor rankings.
- • Shop-ERP connection (Xentral-Connect, middleware, custom)
- • Inventory sync every 5 minutes or real-time
- • Correct availability at variant level
- • Delivery times per product/variant from ERP
C Build Webhook Infrastructure
UCP order management is based on webhooks. With n8n or Make, you build a robust event processing system:
- • Incoming webhooks for new orders
- • Outgoing webhooks for status updates
- • Retry logic for failed calls
- • Logging for debugging and compliance
D Optimize Google Merchant Center
UCP builds on the Merchant Center feed. A well-maintained feed is essential:
- • Complete product feeds (all required attributes)
- • Regular updates (at least daily, preferably hourly)
- • No errors/warnings in the Merchant Center
- • Activation for "AI Mode" (when available)
Practical Example: How an Agent Purchase Could Work
Customer to AI agent
"Order me 50 units of item X, I need them by Friday."
Agent checks UCP endpoints
Retrieves /.well-known/ucp, finds checkout capability.
Check availability
Shop API → ERP (via middleware): 73 units in stock, delivery time 2 days ✓
Complete checkout
Agent creates cart, applies customer discount if applicable, triggers payment.
Process order
Webhook → ERP: Order created, picking started.
Status update
ERP → Middleware → UCP Webhook: "Shipped, tracking: DHL 1234567890"
Timeline: When Will UCP Arrive in Europe?
UCP is already active in the US (Google AI Mode, Gemini App). There is no official date for Europe yet, but experience shows: Google features typically arrive in Europe 6 to 12 months later.
Recommended Roadmap
Lay the groundwork
Structured data, Merchant Center, review data quality
Optimize ERP integration
Switch shop-ERP connection to real-time sync, ensure data quality
Webhook infrastructure
Build n8n/Make workflows for order events
UCP integration
Deploy UCP manifest, implement endpoints (once EU rollout begins)
Frequently Asked Questions About Agentic Commerce
When will UCP become relevant for my store?
UCP is already live in the US (Google AI Mode, Gemini). Experts expect a European rollout by late 2026. Preparation should start now.
Do I need to completely rebuild my store?
No. If you already have clean product data, a solid API structure, and structured data, you are well prepared. UCP builds on existing standards.
Does UCP work with my shop system?
UCP is an open standard and works in principle with any shop system that supports REST APIs. Shopware 6, Magento, WooCommerce, and other modern systems bring the technical foundations – native plugins are still missing.
What does UCP integration cost?
That depends on the current state of your store. Stores with clean data structures mainly need endpoint implementation. If data quality is poor, cleanup work is needed first.
Do I absolutely need an ERP system?
For professional agentic commerce, yes. Without an ERP, you lack real-time inventory, up-to-date pricing, and automated fulfillment processes – all factors that agents evaluate when making selections.
Conclusion: Making Your Store UCP-Ready
Agentic commerce is evolving. How fast remains to be seen. Those who invest now in a solid tech stack (modern shop system + ERP + automation) are not only prepared for UCP but benefit immediately from better processes.
Clean product data improves SEO, real-time inventory prevents overselling, automated workflows save time. You're not investing in an uncertain future, but in immediate improvements – with UCP readiness as a bonus.