Magento Agentic Commerce Hub 2026

Magento 2 & Adobe Commerce ACP · UCP · AP2 Open-source modules Updated June 2026

Magento Agentic Commerce Hub 2026

ACP · UCP · multi-protocol readiness · AI attribution — the complete resource for Adobe Commerce merchants entering AI-agent-mediated shopping.

By Ievgenii Gryshkun  ·  June 2026  ·  15 min read

Protocols and platform status change. Verify current spec versions before implementation. Reflects ACP, UCP, and AP2 as of June 2026.

Default Magento 2 install
~25%
  • ✗ AI crawlers blocked by default
  • ✗ No llms.txt or ACP feed
  • ✗ Product schema incomplete
  • ✗ No UCP manifest
  • ✗ Zero AI attribution
With Angeo AEO suite
87–91%
  • ✓ All 10 AI bots permitted
  • ✓ llms.txt auto-generated
  • ✓ offers.availability live
  • ✓ ACP feed validated
  • ✓ AI orders attributed in GA4

TL;DR. Default Magento has none of the signals AI agents need to discover, understand, or transact with your store. This page maps every signal, every protocol, every open-source module, and every implementation step — in priority order.

The AEO foundation (robots.txt + llms.txt + schema) takes 90 minutes. ACP conformance review adds 1–4 weeks. UCP manifest adds 30–60 minutes once foundations are in place. Multi-protocol payment readiness (AP2, Visa TAP, Mastercard Agent Pay) is handled by your payment processor.

What is agentic commerce — and what does it mean for Magento?

Agentic commerce is when an AI assistant (ChatGPT, Gemini, Copilot, Perplexity) finds a product and completes the purchase for a user — without the user ever visiting your storefront. The shopper says “order trail shoes under €120 that arrive by Friday” and the agent handles discovery, comparison, and checkout.

For Magento merchants this creates both an opportunity and an infrastructure gap. Platforms like Shopify handle the AI channel relationship centrally — their merchants get default syndication with no individual setup. Magento merchants own their stack, which means full control and full responsibility. Every AI visibility signal must be configured deliberately.

The good news: once configured, a Merchant-Controlled AEO stack reaches the same AI commerce channels as platform-mediated approaches — with full auditability, no platform dependency, and no revenue share to a commerce aggregator.

→ See: Shopify vs Magento for AI Commerce 2026: Platform-Mediated vs Merchant-Controlled AEO

The agentic commerce protocol landscape in 2026

Five protocol families now shape agentic commerce. Magento merchants do not integrate all of them directly — the cards below map what each requires at the merchant level.

ACP — Agentic Commerce Protocol
OpenAI · also adopted by Microsoft Copilot
Product feed + discovery standard. Powers ChatGPT Shopping. Merchants generate a .jsonl.gz product feed and apply at chatgpt.com/merchants.
✓ Live — apply now Feed-based
UCP — Universal Commerce Protocol
Google · AI Mode, Gemini, YouTube Shopping, Gmail
Live agentic checkout standard. Merchants expose a /.well-known/ucp manifest with GraphQL and REST transport bindings. US early access mid-2026.
⏳ US early access
AP2 — Agent Payments Protocol
Google · open standard
Cryptographic mandate layer between agents and payment networks. Merchants do not integrate AP2 directly — payment processors handle it. Confirm your gateway supports AP2-compliant transactions.
Processor-handled
Visa TAP + Mastercard Agent Pay
Visa · Mastercard
Network-specific agent-payment authorization on card rails. No direct merchant integration — handled by your payment gateway underneath ACP / UCP transactions.
✓ GA — via gateway

Merchant decision rule: Implement ACP first (broadest reach, clearest conformance path). Prepare UCP manifest second (Google ecosystem checkout). AP2 / Visa TAP / Mastercard Agent Pay resolve through your payment processor automatically.

ACP vs UCP for Magento 2: Which Protocol Should You Implement First?

Implementation path: 25% → 90%+ AEO score

A default Magento 2.4.x install scores approximately 25% on a 9-signal AEO audit. The steps below are sequential — each builds on the previous. Active configuration time: ~90 minutes. Total elapsed including OpenAI review: 1–4 weeks.

  1. 1

    Unblock AI crawlers in robots.txt

    Default Magento blocks most AI bots via wildcard rules. In 2026 there are 10 distinct AI crawlers across ChatGPT, Gemini, Claude, Perplexity, and Bing. None are explicitly allowed out of the box.

    Module: angeo/module-robots-txt-aeo — explicit Allow rules for all 10 AI bots, append-only, per-store-view support.

    ⏱ ~10 min +15 pts Full guide →
  2. 2

    Generate llms.txt catalog map

    llms.txt tells AI systems what your store is, what categories exist, and what products you sell — in a format optimized for LLM ingestion. Magento has no native support.

    Module: angeo/module-llms-txt — auto-generates llms.txt and llms.jsonl per store view, regenerates on catalog changes.

    ⏱ ~15 min +10 pts Full guide →
  3. 3

    Complete Product JSON-LD schema

    The single most common failure: offers.availability missing — ChatGPT Shopping skips those products entirely. Magento’s default Luma outputs partial microdata. Hyvä Theme has zero Product schema by default.

    Module: angeo/module-rich-data — server-rendered JSON-LD with offers.availability, aggregateRating, brand, sku, gtin13, priceValidUntil. Works with all frontends including Hyvä.

    ⏱ ~20 min +15 pts Full guide →
  4. 4

    Generate ACP product feed and apply for ChatGPT Shopping

    The ACP product feed is what OpenAI uses to ingest your catalog into ChatGPT Shopping — required fields, image formats, refresh cadence, and conformance rules. Shopify generates this centrally; Magento merchants generate it independently.

    Module: angeo/module-openai-product-feed — spec-compliant .jsonl.gz feed with 15-minute cron refresh. Apply at chatgpt.com/merchants.

    ⏱ ~25 min + 1–4 weeks review +15 pts Full guide →
  5. 5

    Configure UCP manifest for Google AI Mode

    UCP exposes a /.well-known/ucp profile that AI agents use to discover your store’s capabilities, then uses Magento’s GraphQL API for browsing and REST API for cart operations. Steps 1–4 are prerequisites.

    No native Magento module for UCP as of mid-2026 — custom configuration required. See the 10-step checklist.

    ⏱ ~30–60 min +10 pts 10-step UCP checklist →
  6. 6

    Add AI order attribution

    Without attribution, AI-driven revenue appears as direct or dark traffic in GA4. AI referrers (chatgpt.com, perplexity.ai, copilot.microsoft.com, gemini.google.com) must be captured at session start and persisted through checkout to sales_order.ai_referrer.

    This is the difference between knowing “AI drove 12% of orders last quarter” and not knowing.

    ⏱ ~10 min Operational signal

Install all modules in one command

# Install the full Angeo AEO suite composer require \ angeo/module-aeo-audit \ angeo/module-robots-txt-aeo \ angeo/module-llms-txt \ angeo/module-rich-data \ angeo/module-openai-product-feed \ angeo/module-openai-product-feed-api bin/magento setup:upgrade && bin/magento cache:flush # Run audit — see your exact score and what to fix bin/magento angeo:aeo:audit ✓ PASS robots.txt All 10 AI bots permitted ✓ PASS llms.txt Generated — 12,400 products mapped ✓ PASS Product JSON-LD offers.availability present ✓ PASS ACP product feed Spec-compliant — 15min refresh ✓ PASS MCP server /mcp/v1 active ✓ PASS AI attribution sales_order.ai_referrer active AEO Score: 91% — Excellent

All modules are MIT-licensed and free on Packagist. Implementation help and enterprise configuration are available as paid services.

Open-source module reference

CLI audit — all 9 AEO signals, 0–100 score, fix commands
MIT · Free
Allow rules for all 10 AI bots — per store view, append-only
MIT · Free
llms.txt + llms.jsonl AI catalog map, auto-generated per store view
MIT · Free
Product JSON-LD — offers.availability, aggregateRating, FAQPage, Hyvä-compatible
MIT · Free
ACP product feed — .jsonl.gz spec-compliant, 15-min cron refresh
MIT · Free
ACP REST API — 6 endpoints for live inventory, pricing, and agent queries
MIT · Free

AI engine coverage by signal

A fully configured Angeo AEO stack reaches every major AI commerce channel. The table maps which signals each platform uses as primary and secondary inputs.

AI enginePrimary signalSecondary signalProtocol
ChatGPT ShoppingACP product feedOAI-SearchBot + Product JSON-LDACP
ChatGPT (editorial)OAI-SearchBot crawlllms.txt + Product JSON-LDCrawl
Google AI ModeUCP manifestGoogle-Extended + schemaUCP
GeminiGoogle-Extended crawlUCP manifest + JSON-LDUCP / Crawl
PerplexityPerplexityBot crawlllms.txt + Product JSON-LDCrawl
Microsoft CopilotBingbot + ACPProduct JSON-LDACP / Crawl
Claude (Anthropic)ClaudeBot crawlllms.txtCrawl

Agentic commerce timeline — what changed and when

September 2025
Google announces AP2 (Agent Payments Protocol)
Open standard for cryptographic mandate authorization. 60+ launch partners including Mastercard, PayPal, Coinbase. Introduces Intent, Cart, and Payment mandates as W3C Verifiable Credentials.
October 2025
Visa TAP launches with Cloudflare
Network-specific agent-payment authorization. Signs agent identity into HTTP request headers for merchant verification.
January 2026 — NRF
Google announces UCP; Amazon expands “Buy for me”
UCP publicly announced. Mastercard confirms participation in UCP, AP2, ACP, and A2A simultaneously. UCP explained →
March 2026
OpenAI pauses Instant Checkout; ACP becomes discovery/feed protocol
ACP continues as the product feed and discovery standard powering ChatGPT Shopping. How this affects Magento merchants →
May 2026 — Google Marketing Live
UCP expands across AI Mode, Gemini, YouTube Shopping, Gmail
UCP integration confirmed across Google’s full AI surface. US early-access merchants can apply. UCP checklist →
Mid-2026 — current
Multi-protocol era: five protocol families active
AI referral traffic to e-commerce up 4,700% YoY. Merchants implementing both ACP and UCP reach the broadest AI commerce surface. UCP native module for Magento not yet available — custom configuration required.

Complete guide library

Foundation — AEO basics

Protocols — ACP and UCP

AI content and product visibility

Frequently asked questions

What is agentic commerce for Magento?

Agentic commerce for Magento means AI agents (ChatGPT, Gemini, Perplexity) can discover, browse, and purchase products from your store without a human clicking through it. This requires an ACP-compliant product feed, a UCP manifest, correct Product JSON-LD schema, and AI bot access in robots.txt.

Does Magento support ACP and UCP natively?

No. Default Magento 2 / Adobe Commerce has no native ACP feed, UCP manifest, or AI-optimized robots.txt. Each signal requires a dedicated Composer module. Angeo’s open-source suite covers all six AEO signals as separate MIT-licensed packages on Packagist.

What is the difference between ACP and UCP for Magento merchants?

ACP (Agentic Commerce Protocol by OpenAI) is a product feed and discovery protocol — it powers ChatGPT Shopping and Microsoft Copilot. UCP (Universal Commerce Protocol by Google) is a live agentic checkout standard for Google AI Mode and Gemini. Implement ACP first for broader reach, then UCP for the Google ecosystem.

Does agentic commerce work with Hyvä Theme?

Yes, but Hyvä Theme has zero Product schema by default. The angeo/module-rich-data module adds server-rendered Product JSON-LD that works with any Magento frontend including Hyvä. The ACP feed, llms.txt, and robots.txt modules are theme-independent.

How long does it take to make a Magento store agentic commerce-ready?

The AEO foundation (robots.txt, llms.txt, Product schema) takes approximately 90 minutes via Composer modules. The ACP feed requires applying at chatgpt.com/merchants and passing OpenAI’s conformance review, typically 1–4 weeks. UCP manifest configuration adds 30–60 minutes once foundations are in place.

Do I need to integrate AP2, Visa TAP, and Mastercard Agent Pay separately?

No. These are payment-layer protocols handled by your payment processor (Stripe, Adyen, etc.). The merchant’s job is to choose the correct ACP or UCP path and confirm that your gateway supports AP2-compliant transactions. The network credential layer resolves automatically.

Does implementing AEO affect my Google SEO?

Positively. The AEO foundation — correcting robots.txt, completing Product JSON-LD, adding llms.txt — also improves traditional Google SEO signals. Completing the schema (offers.availability, aggregateRating, priceValidUntil) improves Rich Results eligibility. Unblocking AI bots has no negative effect on Googlebot crawling.

Is ChatGPT Shopping available outside the US?

ChatGPT Shopping (ACP) is currently US-focused with a waitlist for other markets. Configure the product feed and conformance infrastructure now regardless — the review queue, once open for your region, requires a spec-compliant feed already in place. UCP (Google AI Mode) is similarly US early-access as of mid-2026.