Anthropic just open-sourced shopping and merchant agents. Here is what they still do not give you
Claude Commerce Agents, Anthropic's Apache-2.0 blueprint for shopping and merchant agents, shipped 2 September 2026. It hands engineering teams a working reference in days instead of months, and it is explicit about what it will not do for you: no payments, no catalogue, no advertising. The evidence problem is still yours, on both sides of the counter.
Shopify gave every Liquid store an agent API on 21 August without asking anyone. Twelve days later, Anthropic gave every retailer the code to build a much deeper one, and asked engineering teams to actually do the work. That is the more interesting event, because a blueprint you have to build tells you what the builders think an agent needs.
In this article
A blueprint is a different kind of signal to a platform default. Shopify's WebMCP tells you what one company decided every merchant should have on day one, for free. Anthropic's commerce agents repo tells you what the company building the model thinks an engineering team should build on purpose, and is willing to hand over the working code for. Reading what they included, and what they pointedly left out, is worth more than the headline.
What actually shipped
The repository is public at github.com/anthropics/commerce-agents, licensed Apache 2.0, free to fork and modify. It contains two working agents rather than one. A shopping agent sits inside a retailer's own app or site and handles the customer-facing loop: search the catalogue, compare options, build a cart. A merchant agent works the other side of the counter, helping store operators with inventory, pricing and marketing decisions. Anthropic describes the package as the harnesses, patterns and guardrails an engineering team needs to get a commerce agent running in days rather than months.
The reference examples span four verticals, retail, travel, telecom and entertainment, each with its own working example and a companion staff-facing portal. The release also ships a plugin for Claude Code, Anthropic's developer tool, so a team can scaffold a new vertical from the existing pattern instead of starting from the protocol spec.
What Anthropic deliberately left out
The blueprint ships with no payment protocol, no product catalogue and no advertising layer. Those three pieces stay with the retailer's own systems and payment partners, so no transaction routes through Anthropic itself. That is a narrower scope than it might sound. It means the hardest, most regulated parts of a commerce agent, moving money and knowing what is actually in stock, are explicitly somebody else's problem: yours, or your existing payment and inventory vendors'.
Adoption so far reads the same way. Shopify and Priceline are both already running customer-facing agents on Claude; Priceline rebuilt the latest version of its assistant, Penny, on Anthropic's models. Those are production deployments layered on top of platforms that already owned payments and catalogue. The blueprint is the connective tissue, not the whole animal.
up to 35%
Larger cart size
Vendor-reported, Claude-powered shopping agents vs. baseline
0%
More likely to convert
Vendor-reported purchase-completion lift
Apache 2.0
License
Free to fork, modify and redistribute
0
Reference verticals
Retail, travel, telecom, entertainment
A blueprint that ships without a payment rail is Anthropic saying the interesting problem was never moving the money. It was getting the agent to a decision worth trusting.
Rohin Aggarwal · Idukki
The shopping agent: the same gap, dressed differently
We wrote about this exact problem two weeks ago when Shopify's WebMCP went live on every Liquid storefront. The shape repeats here, for a different reason. WebMCP is free and automatic, so the gap is that every store got the same verbs on the same day. Claude Commerce Agents is a blueprint a team has to actively build, so the gap is different in kind: even after the engineering work is done, the agent Anthropic's own reference implements can search, compare and add to cart. Nothing in the harness tells it why one of four comparable products deserves the sale over the others.
That is not a criticism of the blueprint. It is honest about its own scope in a way a lot of agent-framework marketing is not. But it means a retailer who ships Claude Commerce Agents this quarter and stops there has built a faster, better-engineered version of the same evidence gap every other agent surface has: complete Product schema, an AggregateRating backed by real reviews, and rights-cleared, product-tagged customer photos and video the agent can quote when it explains a recommendation. None of that arrives with the repo, and it was never going to. It is catalogue-and-content work, not model work.
The merchant agent: the half nobody is writing about
Most of the coverage of this release, understandably, is about the shopping agent. It is the customer-facing half and it is the one that maps onto WebMCP and ChatGPT Shopping and everything else in the agentic-commerce conversation this year. The merchant agent is the quieter half, and it raises a question the shopping-agent framing does not.
A merchant agent making inventory, pricing and marketing calls is only as good as the signal it is reasoning over. Ask it which SKUs to feature in a promotion and it needs to know, with some confidence, which products actually have strong customer sentiment behind them, not just which ones are overstocked. Ask it to draft marketing copy and it needs source material it is actually allowed to use: which customer photos and reviews carry a usage right that covers a paid placement, and which ones are display-only. Feed a merchant agent an untagged, unrights-cleared content library and the most likely failure mode is not a bad answer. It is a confident one, built on the wrong evidence, that a human approves because the agent sounded certain.
What to do about it this week
- 1Read the repo before the press coverage.
github.com/anthropics/commerce-agentsis public and the READMEs are short. Thirty minutes tells you more than any third-party writeup, including this one. - 2If you are already building a commerce agent with a router and subagents, read the architecture note above properly. One agent loop plus skills is a deliberate choice in Anthropic's own reference, worth weighing against whatever pattern your team defaulted to.
- 3Do not let "no payment protocol, no catalogue" become "not our problem yet." Those are explicitly scoped out because they are supposed to be already solved, by your existing stack. If they are not, that is the actual blocker, not the agent framework.
- 4Audit the evidence layer before you build the shopping agent's product-selection logic. Product schema completeness, attributable reviews, and product-tagged UGC. Our free AI Visibility Check grades it on any URL.
- 5If a merchant agent is on your 2026 roadmap, get the rights and tagging layer in place first. An agent reasoning over your content for pricing or marketing decisions needs the same consent and provenance record a human marketer would want before publishing the same material.
Common questions
Is Claude Commerce Agents a product I can buy, or code I have to build with?
Code you build with. It is a public, Apache-2.0-licensed GitHub repository (anthropics/commerce-agents), not a hosted product. Anthropic describes it as harnesses, patterns and guardrails for an engineering team to build a commerce agent on, with working reference examples rather than a drop-in SaaS tool.
Does it handle payments?
No, deliberately. The blueprint ships with no payment protocol, no product catalogue and no advertising layer. Those stay with the retailer and its existing payment partners, so no transaction routes through Anthropic.
How reliable are the 35% and 60% figures?
They are Anthropic’s own reported figures from the release, describing retailers already running shopping agents on Claude. Useful as a directional signal that the approach works somewhere; not a number to present as an independently verified benchmark until a third party audits it.
How is this different from Shopify’s WebMCP?
WebMCP is a platform default: free, automatic, live on every Liquid storefront with nothing to build. Claude Commerce Agents is a blueprint you build with, aimed at any retailer regardless of platform, and it covers two agent types (customer-facing and staff-facing) rather than one. Both leave the same gap open on the customer-facing side: neither tells an agent why your product deserves the sale over a comparable one.
What does the merchant agent actually need from a UGC and reviews programme?
A record of what content exists, whether it is rights-cleared for the specific use (organic display versus a paid placement are different rights), and some measure of sentiment that is not just star-rating volume. Feed a merchant agent a library without that structure and it can still produce confident answers, just not ones built on evidence you would sign off on if a human asked the same question.
Sources
- 1Anthropic, commerce-agents (GitHub repository) · Primary source. Apache 2.0. Verticals, architecture, README prompts.
- 2Anthropic, Building Claude Commerce Agents (webinar page) · Anthropic’s own framing of the shopping and merchant agent blueprints.
- 3MarkTechPost, Anthropic Released Claude Commerce Agents · Architecture detail: one agent loop plus skills, no router, no per-domain subagent.
- 4PYMNTS, Anthropic built the shopping brain and skipped the wallet · No-payment-protocol scoping, performance figures, Shopify and Priceline adoption.
- 5PaymentsJournal, Anthropic’s Merchant Blueprint · Independent framing of the merchant-agent half of the release.
- 6Idukki, Shopify just gave every store a free agent API · The WebMCP piece this one deliberately builds on rather than repeats.
- 7Idukki, MCP, agent tool calls and product feeds: the merchant’s guide · Implementation sequence for the MCP surface this blueprint targets.
Continue reading
1 piece in this clusterThese long-form pieces on the Idukki blog link back to this article, go deeper on the cluster.
More from Rohin Aggarwal
- Agentic commerce
How AI agents actually choose products: 12 ChatGPT, Claude, Perplexity and Gemini conversation teardowns
AI agents recommend the SKU they can defend, not the prettiest page. Twelve annotated shopping conversations show which schemas got cited and which were skipped.
- Agentic commerce
The 7-second window: why agentic commerce makes your PDP the new email subject line
Shopping agents quote roughly 700 words of your PDP, not the whole page. Whatever they quote wins the sale, so the top of the page has to carry the answer.
- Agentic commerce
MCP, agent tool calls and product feeds: the merchant’s guide to what to implement first
Shopify made catalogue, cart and checkout tool-calling free and automatic in August 2026. Here is what that changes about MCP, OpenAI tools and Google’s agent feed, what it deliberately does not give an agent, and a vendor-ready RFP template.