Agentic Commerce for Magento: How to Sell Through ChatGPT & AI Shopping Agents (2026)
AI assistants like ChatGPT can now find products and check out for shoppers. Here is how agentic commerce works and how to make your Magento or Hyvä store ready: honestly, and step by step.
Your next customer might not be a human. More and more, people ask an AI like ChatGPT, Gemini, or Copilot to find a product, compare it, and just buy it for them. The shopper never lands on your homepage. The AI does the work.
This guide explains agentic commerce in plain words. You will learn how AI shopping agents read a catalog, how the new buying protocols work, and the practical steps to get your Magento store ready, whether you run Magento Open Source with Hyvä or Adobe Commerce.
Your next customer might not be a human
Shopping is changing fast. Instead of typing a search and clicking through ten tabs, people now ask an AI: "Find me a good pair of running shoes under $80 and order them." The AI reads catalogs, picks a match, and checks out. This is called agentic commerce, and it is growing quickly.
For this to work, the AI needs a way to read your products and a safe way to pay. That is why open standards now exist, like the Agentic Commerce Protocol (ACP), co-created by OpenAI and Stripe. With ChatGPT serving around 900 million weekly users, even a small slice of AI-driven buying is a big deal.
Let me be honest: this is still early. ChatGPT "Instant Checkout" is live but US-only for now, with a waitlist for other regions. You do not need to panic. But you do want to prepare, because the stores with clean product data and a good feed will be the first ones AI shopping agents can actually sell. The rest of this guide shows you how to get there.

What "agentic commerce" actually means
Agentic commerce is when an AI agent does your shopping for you. Instead of just answering a question, the agent takes action. It can search for a product, compare a few options, pick the best one, and even pay for it. It can also help after you buy, like checking on your order or starting a return.
For this to work, your store has to do two things. First, it must let the AI read your catalog, so the agent knows what you sell, what is in stock, and how much it costs. Second, it must let the agent check out in a safe way, so the payment goes through without anyone leaking card details. If your store cannot do both, the AI simply skips you and sends the shopper somewhere else.
Here is a simple everyday example. You tell ChatGPT, "Find me a warm waterproof jacket under $120 that ships by Friday." The AI looks across stores, finds a match, shows you one good option, and lets you buy it right there in the chat. You never open a single website. That is agentic commerce.
The protocol landscape: ACP, UCP, MCP & Copilot
For an AI agent to read your catalog and check out, both sides need to speak the same language. That "language" is a protocol. In 2026, four big efforts are competing to become the standard. Here is how they line up.
| Standard | Who's behind it | Where it shows up |
|---|---|---|
| ACP (Agentic Commerce Protocol) | OpenAI + Stripe (open, Apache-2.0) | ChatGPT Instant Checkout |
| UCP (Universal Commerce Protocol) | Google (announced at NRF, January 2026) | Google Search AI Mode + Gemini |
| MCP (Model Context Protocol) | Anthropic, adopted by Adobe | Adobe Commerce MCP server + agents |
| Copilot Checkout | Microsoft | Copilot (US), with Shopify, PayPal, Stripe, Etsy |
Let's be honest: this is still early days. None of these standards has "won," and they are all racing for the same spot. Things will shift over the next year, so do not bet everything on one option.
That said, for most Magento merchants today, ACP is the most concrete path. It powers ChatGPT Instant Checkout, it is an open standard, and ChatGPT is where a huge number of shoppers already ask for buying help. If you want to start with one, start there.

How a ChatGPT purchase actually reaches your Magento store
The Agentic Commerce Protocol (ACP), built by OpenAI and Stripe, has three moving parts: a feed that shows your products, a checkout API that runs the cart, and a safe payment token that charges the buyer. Get those three right and a shopper can buy from your Magento store right inside ChatGPT.
1. The product feed
The product feed is the single source of truth the AI uses to show your products. It's a structured file with the basics: title, description, price (with a currency code), availability and stock status, and images. You don't expose your whole store. You gzip-compress the feed and push it to an OpenAI-provided endpoint. The full format lives at developers.openai.com/commerce/specs/feed.
2. The agentic checkout API (5 endpoints)
Next you build a small set of REST endpoints that follow the Agentic Checkout spec. There are five, plus webhooks so you can tell OpenAI when an order's status changes. The paths below are illustrative to show the flow; the exact paths follow the official spec.
POST /checkout_sessions -> create a cart/session
POST /checkout_sessions/{id} -> update (shipping, tax)
GET /checkout_sessions/{id} -> read current state
POST /checkout_sessions/{id}/complete -> take payment, place order
POST /checkout_sessions/{id}/cancel -> cancel
+ webhooks -> tell OpenAI about order status changes
3. Delegated payment (Stripe Shared Payment Token)
Payment follows the Delegated Payment Spec, and Stripe's Shared Payment Token (SPT) is the first compatible implementation. The token is encrypted and, with the buyer's permission, is only authorized for one specific amount and one specific merchant: you. So nobody gets an open-ended charge. If you already use Stripe, turning this on for ChatGPT Instant Checkout on Magento can be as little as a one-line change.

Even when a sale starts in ChatGPT, the order still lands in Magento. You accept or decline it, charge through your own payment provider, and handle shipping and support yourself. ChatGPT is a new sales channel, not a new owner of your store.
Two paths for Magento merchants
The way you sell through AI agents depends on your Magento edition. The good news: Magento Open Source plus Hyvä is not left out. In fact, the open route is here first.
Path A: Magento Open Source + Hyvä (the open route)
Magebit released a free, open-source Magento agentic commerce module called "Magento 2 Extension for Agentic Commerce" (on GitHub as magebitcom/magento2-agentic-commerce-module, and on Packagist as magebitcom/magento2-module-agentic-commerce). It adds agentic features like selling inside ChatGPT through ACP, and it is described as Hyvä, B2B, and Adobe Commerce Cloud compatible. There are also other early, experimental options out there, such as MaxMage/module-agentic-commerce.
To go live, you still need a few things. You apply for OpenAI merchant approval at chatgpt.com/merchants, this is US-only today, with a waitlist for other regions, and you use Stripe for the Shared Payment Token. This is still early, but it is real and it works. For most independent merchants, this is the path to sell on ChatGPT from a Magento store without an enterprise contract.
Path B: Adobe Commerce (the enterprise route)
If you run Adobe Commerce, Adobe shipped its own Adobe Commerce MCP server, announced at Adobe Summit in April 2026. It uses the Model Context Protocol to expose your catalog, cart, pricing, inventory, checkout, and more to AI agents, so an agent can browse and buy much like a shopper would.
Here is the honest catch. The agentic capabilities require an Adobe Experience Platform (AEP) license. That makes this an enterprise path, not a free one. It is powerful, but it sits behind a bigger budget than most small stores carry.
For once, Magento Open Source stores are not waiting on the enterprise edition: the open route to AI agents is here first.
Remember that this is early. Instant Checkout is US-only today, the open-source modules are young, and you still need OpenAI's approval. Treat it as a high-upside experiment, not a finished sales channel.

Your agent-readiness checklist (do this now)
Here are the concrete steps to get your store ready for AI shopping agents.
- Clean your product data. Make sure every title, description, price, currency, stock level, and image is accurate. Agents trust your data, so wrong data means lost sales.
- Build a structured product feed. Export your catalog as a feed with clear fields: title, description, price plus currency, stock, and images. This is what the AI reads.
- Set up Stripe. The Shared Payment Token used in ChatGPT checkout runs through Stripe, so you need a working Stripe account first.
- Apply for OpenAI merchant approval. Sign up at chatgpt.com/merchants. It is US-only today, with a waitlist in other countries.
- Strengthen your on-site structured data. Keep good schema markup on your storefront so AI engines can read and trust your products.
- Monitor the new channel. Watch the orders and returns that come in from AI agents, just like you would any other sales channel.
- Start as a small experiment. Treat this as a test, not a full launch. Learn the channel with low risk before you scale up.

The honest risks
This channel is still new, so go in with open eyes. Selling in ChatGPT is US-only today. The Magento modules for it are early and experimental. The protocols are still competing (ACP vs UCP), so the rules may change. You also give up some control of the buying experience, since the agent handles the chat. And you need to watch your fees, margins, and returns closely on this channel.

Agentic commerce is early, and right now it is US-first. But the prep work pays off either way: clean product data, a structured feed, and Stripe all help your store with AI search and visibility today, even before you can sell in ChatGPT. Magento Open Source and Hyvä can join this channel now, and the merchants who experiment early will learn how it works before it gets crowded.
Want help getting your Magento or Hyvä store agent-ready: clean product data, a proper feed, and the ACP/Stripe wiring? Let's talk.
Work with meFrequently asked questions
What is agentic commerce?
Agentic commerce is when an AI agent shops and buys on behalf of a person. Instead of clicking through your website, a shopper tells an AI assistant like ChatGPT what they want, and the agent finds products, compares them, and completes the purchase. Your store needs clean product data and a structured feed so the agent can read and trust it.
Can I sell on ChatGPT with Magento right now?
Yes, but only if you are in the United States today. You need clean product data, a structured product feed, a Stripe account for the Shared Payment Token, and OpenAI merchant approval from chatgpt.com/merchants. Outside the US, you can join a waitlist and still do the prep work now.
Do I need Adobe Commerce, or does Magento Open Source work?
Magento Open Source works fine. The agent-readiness steps, clean data, a product feed, Stripe, structured data, and OpenAI approval, do not require the paid Adobe Commerce edition. Hyvä storefronts can join this channel too.
Is ChatGPT Instant Checkout available outside the United States?
Not yet. ChatGPT Instant Checkout is US-only today, with a waitlist for other countries. Even so, the prep work is worth doing now. Clean product data, a structured feed, and strong on-site structured data all help your AI search visibility everywhere.
What is the Agentic Commerce Protocol (ACP)?
The Agentic Commerce Protocol (ACP) is one of the standards that lets AI agents and stores talk to each other to complete a sale. It is co-created by OpenAI and Stripe, is open and Apache-2.0 licensed, and powers ChatGPT Instant Checkout. It is still competing with another protocol, UCP, so the rules are not final yet.
Will AI shopping agents replace my online store?
No. AI agents are a new sales channel that sits next to your storefront, not a replacement for it. You still need a strong website with clean product data and good structured data, because the agents read that same data to find and trust your products. Think of it as one more customer at your checkout.