agenticplug.ai - Agentic Commerce Optimization company
Industry Analysis14 min read

Anthropic's Claude Commerce Agents: What They Mean for Merchants

Headshot of Shahzad Safri, Founder and AEO/GEO expert at agenticplug.ai
Shahzad Safri

Direct Answer

On September 2, 2026, Anthropic released Building commerce agents with Claude, an open-source Apache 2.0 blueprint for two AI agents: a shopping agent a business embeds in its own app, and a merchant agent for running the back office. It ships reference code, guardrails, and a Claude Code plugin, deployable through the Messages API, Agent SDK, or Claude Managed Agents.

Key Takeaways

  • This is a blueprint, not a product. Anthropic shipped open-source Apache 2.0 reference code, harnesses, and guardrails so an engineering team can stand up a working commerce agent in days, then customize it to their own catalog, policies, and brand.
  • Two agents, two audiences. The shopping agent lives inside a merchant's app and helps customers search, compare, and build a cart, while the merchant agent helps staff analyze sales, manage inventory, and draft campaigns with human approval before anything goes live.
  • The architecture favors simplicity. Anthropic recommends a single-model agent loop with Agent Skills for the long tail rather than multi-agent orchestration, presentation tools as typed UI components, and money-moving actions enforced in code, not prompts.
  • MCP is the integration layer. The blueprint uses the Model Context Protocol to connect an agent to catalog, cart, inventory, and analytics systems, and deliberately leaves payment to the merchant's existing checkout or an agentic payments provider.
  • Trust is the explicit selling point. Visa, Mastercard, Accenture, Shopify, Priceline, Intuit, Klaviyo, Wix, Zomato, Fetch, and Square are named partners, with the payment networks framing trust and merchant control as the condition for agentic commerce to scale.
  • The readiness bar just moved. Retailers running shopping agents on Claude report carts up to 35% larger and shoppers 60% more likely to complete a purchase, which rewards businesses whose systems an agent can actually read and transact against.
Two glowing glass panels labeled shopping agent and merchant agent linked by electric blue and purple neon lines to catalog, cart, and inventory icons over a dark navy background

What Did Anthropic Launch With Building Commerce Agents With Claude?

On September 2, 2026, Anthropic released Building commerce agents with Claude, an open-source blueprint for constructing AI shopping and merchant agents rather than a hosted product you switch on. It ships as Apache 2.0 licensed code on GitHub, containing the harnesses, patterns, and guardrails an engineering team needs to get a commerce agent running in days. Anthropic

The release packages several things a team would otherwise build from scratch:

  • Two reference agents: complete, working implementations of a shopping agent and a merchant agent, both grounded in a business's own systems rather than in generic web data.
  • Four example verticals: retail, travel, telecom, and ticketing, each with domain-specific flows so a team can start from the closest match instead of a blank file.
  • A Claude Code plugin: a commerce-builder plugin that scaffolds a new agent, adds flows, and authors evaluations from natural-language prompts.
  • Deployment flexibility: the code runs where teams already build with Claude, including the Claude API, Amazon Bedrock, Microsoft Foundry, and Google Cloud Vertex AI.
  • Guardrails in the harness: fencing, provenance gates, caps, memory validation, and a merchant approval gate that run inside the tool call, not as prompt instructions.

Anthropic's framing is that a team can see the agents running in a self-guided demo before writing any code, then use Claude Code to customize them to their own catalogs, policies, and brand. The emphasis on days rather than months is the core claim, and several launch partners independently reported setup times measured in minutes to hours. Anthropic

The strategic read is that Anthropic is not selling a storefront or a checkout button. It is publishing the agent brain and the integration scaffolding, then leaving the catalog, the payment rail, and the brand experience to the merchant, which positions Claude as the reasoning layer beneath many different commerce experiences rather than a destination that sits between a brand and its customer. For an ecosystem that has spent the past year debating checkout and payment standards, releasing the agent layer as free reference code is a bid to make Claude the default reasoning engine beneath all of them. Anthropic

What Can a Claude Shopping Agent and Merchant Agent Actually Do?

The blueprint splits commerce into two roles: a customer-facing shopping agent that lives inside a merchant's app or website, and a business-facing merchant agent that supports the people running the store. The shopping agent covers catalog search, comparison, cart building, and order questions, while the merchant agent analyzes performance and acts on inventory, pricing, and marketing. Anthropic

The shopping agent is deliberately scoped to stop short of the money. Anthropic's blueprint provides integration points for catalog, cart, checkout, customer preferences, and order history, and leaves payment to the merchant, whether that is an existing checkout or an agentic payments provider. The table below maps what each agent handles.

Anthropic's own examples make the split concrete. A customer can say they need a tent, sleeping bag, and stove for a weekend trip with two kids and the shopping agent assembles the set, while a store operator can ask what to discount to clear last season's inventory. The shopping agent's guardrails constrain prices and products to real catalog data and avoid manipulative upsell patterns, and the merchant agent proactively flags problems such as an item about to sell out before a promotion starts. Anthropic

Dimension Shopping agent Merchant agent
Primary user Customers shopping in the app Staff running the store
Core job Search, compare, plan, build a cart Analyze sales and act on operations
Example task Plan and assemble a multi-item order Recommend what to discount to clear inventory
Data it reads Catalog, cart, preferences, order history Analytics, catalog, inventory, pricing, campaigns
Write authority None; hands the cart to checkout Staged; every change waits for human approval
Payment Left to merchant checkout or a payments provider Not applicable
What the shopping agent and merchant agent each handle in Anthropic's commerce-agents blueprint.

The division matters because it isolates risk. A customer-facing agent that cannot move money and a back-office agent that cannot publish a change without sign-off are both safe to deploy quickly, which is a large part of why partners report standing agents up in hours rather than months. Anthropic

How Are Claude Commerce Agents Actually Built?

Anthropic's companion engineering guide argues for one model in a standard agent loop, with skills for the long tail and tools that call the systems you already run, rather than a network of orchestrated subagents. The design keeps latency and cost predictable while still covering a wide surface of commerce tasks. Anthropic

Architecture diagram of a Claude commerce agent: a conversation flows into one model in an agent loop that loads skills, calls tools over MCP, and reaches the catalog, cart, inventory, and analytics systems, all wrapped by a guardrail harness of fencing, provenance gates, caps, memory validation, and an approval gate enforced in code
How a Claude commerce agent is built: one model in an agent loop, Skills for the long tail, MCP to your systems, and guardrails enforced in the harness.

Six patterns define the reference architecture:

  • Skills over subagents: per-domain modularity comes from Agent Skills such as search, purchase research, and customer care, which give separation of concerns without the handoff tax of multi-agent routing.
  • Presentation tools as UI components: each surface, from a product grid to an itinerary, is a typed tool the model calls, so the agent renders real interface elements in the conversation instead of loose text. The same tools give the agent a record of what is on screen, so when a customer says the first hotel or the third one down, the layout is already in the conversation.
  • Safety in code, not prompts: no model tool call moves money on its own, and order placement and merchant writes end in an action the harness controls through maker-checker flows.
  • MCP for backend access: the agents reach catalog, cart, analytics, and finance systems through the Model Context Protocol, with optional connectors to systems like Snowflake, BigQuery, Stripe, and Square.
  • Snapshot-based evals: tests assert against captured agent state rather than replaying whole conversations, which makes agent behavior measurable before it ships.
  • Memory that survives the session: long-term memory lives in the systems you operate rather than in the model, so a shopper who states a constraint in one visit does not repeat it in the next, keyed per operator for merchant agents and switchable off per deployment where regulation demands it.

Two performance choices are worth copying even outside commerce. Anthropic structures each request into global, session, and volatile segments to reach prompt-cache hit rates in the 90 to 99 percent range, and it extracts long-term memory on a separate asynchronous thread so personalization never adds latency to the customer's turn. Anthropic

Teams choose one of three runtimes for the same agent logic, which is what lets the blueprint scale from a laptop demo to a managed deployment without a rewrite.

Runtime What it is Best for
Messages API A turn loop built directly on Claude's core API Full control over the loop and existing Claude API stacks
Agent SDK Anthropic's agent framework with console interfaces Faster setup with eager tool dispatch and built-in scaffolding
Claude Managed Agents (beta) A hosted harness that runs the agent and calls MCP servers Teams that want Anthropic to run the loop, sandbox, and state
The three interchangeable execution paths in the commerce-agents blueprint, per its repository and platform docs.

All three paths share the same guardrails: fencing, provenance gates, caps, memory validation, and the merchant approval gate run inside the tool call and hold whichever runtime a team picks. Anthropic, Anthropic

Who Is Building on It, and Why Is Trust the Center of the Pitch?

Anthropic launched the blueprint with a roster of commerce, payments, and platform partners, and framed trust as the precondition for agentic commerce rather than a feature of it. The named partners are Shopify, Priceline, Accenture, Mastercard, Visa, Intuit, Klaviyo, Wix, Zomato, Fetch, and Square. Anthropic

The partner statements cluster around several themes: trust, speed, category fit, and consumer demand.

  • Payment networks lead on trust: Visa's Jack Forestell said AI will fundamentally reshape commerce but trust must remain at the center of every transaction, while Mastercard's Sherri Haymond called trust the currency of commerce and even more critical in the agentic era.
  • Platforms lead on speed: Wix's Dror Zalika said its engineers had a working commerce agent taking prompts within fifteen minutes, and both Zomato and Fetch reported the blueprint running with no blockers, turning days of scaffolding into hours.
  • Operations teams see time returned: Square framed its agents as watching sales, labor, and inventory and returning real next steps while keeping sellers in control, and Klaviyo described Claude turning customer data into campaigns and personalization its teams could not action by hand.
  • Complex categories show the clearest fit: Priceline's Cobus Kok said a trip is one of the most complex things a person buys, with flights, hotels, and cars to weigh at once, and that the latest version of its Penny assistant runs on Claude because that reasoning is what the models are good at.
  • Financial workflows join in: Intuit's Chris Kasten described building a financial system of intelligence that pairs frontier AI reasoning, including Claude, with Intuit's proprietary data so customers can see what is shifting in their business and why.
  • Consumer demand is the backdrop: Accenture's Kath Gramling cited research that 85% of consumers are now open to collaboration with an AI agent and nearly three in four would trust a personal AI agent more than their best friend to make a purchase.

The trust framing is not incidental. Anchoring the launch with the two largest card networks signals that agentic checkout will run on the same identity, security, and dispute infrastructure as today's payments, and that merchants want control over how an agent engages their customers before they hand it the cart. Anthropic

What Does This Mean for Merchants and Agentic Commerce Readiness?

The launch turns a soft trend into a concrete bar: businesses now compete to be the store an agent can actually read, search, and transact against, not just the brand a human can find. Anthropic reports that retailers running shopping agents on Claude have seen carts up to 35% larger and shoppers 60% more likely to complete a purchase. Anthropic

That demand is not hypothetical. Accenture's Talk to my AI agent study, which surveyed 25,590 consumers across 16 countries, found that nearly three in four (74%) would trust a personal AI agent more than their best friend to make a purchase on their behalf. Accenture

For a merchant, the practical implications sort into five:

  • Transactable beats discoverable: being mentioned in an AI answer is worthless if the agent cannot check your inventory or build a valid cart, so machine-readable catalog and availability data becomes a revenue prerequisite, not a nicety.
  • MCP is the new integration surface: exposing catalog, cart, and order systems through the Model Context Protocol is what lets any Claude-based agent, yours or a partner's, act on your data.
  • Guardrails are a commercial feature: price and product fencing, caps, and approval gates are what make a brand willing to let an agent represent it, which is why Anthropic builds them into the harness.
  • Owned agents change the funnel: a shopping agent embedded in your own app captures high-intent conversations on a surface you control, rather than sending the customer into a third-party assistant.
  • Measurement has to change too: agent-referred visits and revenue do not appear in a conventional funnel, so tracking how often assistants cite, recommend, and transact against your brand becomes the scoreboard that tells you whether the readiness work is paying off.

The deeper shift is where discovery happens. As consumers delegate research and comparison to assistants, the product page a brand spent a decade optimizing for human eyes is increasingly read by an agent instead, and the agent judges the brand on whether it can retrieve a real price, a real delivery date, and a valid configuration. A brand that reads well to humans but returns nothing usable to an agent simply drops out of the recommendation. The same logic applies inside a merchant's own assistant, which is only as good as the systems it can query, so the readiness work is what turns a shopping agent from a demo into a channel. Anthropic

This is where the readiness work maps cleanly onto an existing model. The Network and Convert phases of the A.G.E.N.T.I.C. Framework describe exactly this progression: implement the protocols that let agents reach your systems, then optimize for transactions an agent can complete end to end. Anthropic's blueprint is the supply side of that equation, and the merchant's data readiness is the demand side.

None of this means starting from scratch. Anthropic ships example implementations for retail, travel, telecom, and ticketing plus a Claude Code plugin that scaffolds an agent from a prompt, so a team adapts reference code rather than building the loop by hand. The harness, the guardrails, and the evaluation patterns already exist, and the readiness gap that remains is almost entirely on the merchant's side of the integration. Anthropic

Where Does This Sit in the Agentic Commerce Protocol Stack?

Anthropic's blueprint occupies the agent-logic and integration layer, deliberately leaving checkout and payment to separate protocols, which is why it names the Model Context Protocol for backend access and hands payment to the merchant. Understanding the stack prevents the common error of treating every agentic commerce standard as interchangeable. Anthropic, Model Context Protocol

Three-layer agentic commerce protocol stack: layer one is integration and reasoning through MCP, Anthropic's open standard, where Claude commerce agents build; layer two is checkout through ACP from Stripe and OpenAI and UCP from Google and retailers; layer three is payment authorization through Google's AP2 and Visa and Mastercard agentic rails
Anthropic's blueprint operates at the MCP integration layer, while checkout (ACP, UCP) and payment (AP2, card-network rails) remain separate protocols.

Three layers sit beneath a working commerce agent, and Anthropic's release addresses only the first directly:

  • Integration and reasoning (MCP): the Model Context Protocol, Anthropic's open standard, is how the agent reaches catalog, cart, and analytics systems, and it is the layer the commerce-agents blueprint is built on.
  • Checkout (ACP and UCP): the Agentic Commerce Protocol, co-developed by Stripe and OpenAI, and the Universal Commerce Protocol, led by Google with Shopify and other retailers, standardize how an agent places an order across merchants.
  • Payment authorization (AP2 and card-network rails): Google's Agent Payments Protocol and the agentic programs from Visa and Mastercard evidence that a human authorized a specific purchase, which is the trust layer the launch partners emphasize.

The takeaway is that Anthropic is not competing with the checkout and payment protocols, it is sitting above them. A merchant still needs a checkout path and a payment rail, and the blueprint is explicit that payment is left to an existing checkout or an agentic payments provider. The winning stack combines a capable agent, MCP-exposed systems, and a trusted payment protocol, not any one of them alone. Stripe, Google, Google Cloud

How Can Merchants Prepare for AI Shopping Agents?

Preparing for Claude-based commerce agents means making your systems legible and transactable to an agent, then deploying one where you control the conversation. The five steps below sequence that work in the order that produces a defensible position, extending the Network, Convert, and Track phases of the A.G.E.N.T.I.C. Framework.

1

Audit your AI visibility and transactability

Test how AI assistants describe and recommend your brand, and separately check whether an agent could retrieve your catalog, price, and availability at all. The gap between the two is your starting backlog.

2

Expose your systems through MCP

Stand up Model Context Protocol access to catalog, cart, inventory, and order data so any Claude-based agent can search and act on real records rather than a stale export.

3

Structure product data for machine consumption

Ensure complete attributes, consistent naming, real-time inventory signals, and modeled options, because an agent cannot compare or configure what is buried in free-text.

4

Define skills and guardrails before scale

Scope the agent's flows as skills, and enforce price and product fencing, caps, and human approval for any write in code, following the blueprint's harness pattern.

5

Run snapshot evals and measure agent-referred revenue

Test agent state against captured snapshots before shipping, then instrument how much traffic and revenue agent interactions drive so investment follows what performs.

Frequently Asked Questions

Is Anthropic's commerce agents blueprint free and open source?
Yes. Anthropic released it under the Apache 2.0 license on GitHub on September 2, 2026. The repository is a reference implementation rather than a maintained product, so any team can clone, adapt, and deploy the shopping and merchant agents, though Anthropic does not accept external contributions to the code.
What is the difference between a shopping agent and a merchant agent?
The shopping agent is customer-facing and lives inside a merchant's app, handling search, comparison, cart building, and order questions. The merchant agent is staff-facing and handles sales analysis, inventory, pricing, and marketing, with every change staged for human approval before it goes live. Neither moves money on its own.
Does Claude use MCP for commerce agents?
Yes. The blueprint uses the Model Context Protocol to connect an agent to backend systems such as catalog, cart, inventory, and analytics, with optional connectors to platforms like Snowflake, BigQuery, Stripe, and Square. MCP is the integration layer, while payment is left to the merchant's checkout or a payments provider.
What results have retailers seen with Claude shopping agents?
Anthropic reports that retailers running shopping agents on Claude have seen carts up to 35% larger and shoppers 60% more likely to complete a purchase. These are Anthropic's own launch figures, and actual results depend on catalog quality, data readiness, and how the agent is scoped and deployed.
How is this different from ChatGPT Instant Checkout or the Agentic Commerce Protocol?
Anthropic's blueprint is a build-your-own agent you embed in your own app, not a marketplace checkout standard. Instant Checkout and the Agentic Commerce Protocol standardize how an order is placed across merchants, whereas Claude's blueprint supplies the agent reasoning and MCP integration and leaves checkout and payment to separate protocols.
Do I need Claude Managed Agents to run a commerce agent?
No. The same agent logic runs on three interchangeable runtimes: the Messages API for full control, the Agent SDK for faster setup, or Claude Managed Agents (beta) if you want Anthropic to host the agent loop, sandbox, and state. You can also deploy on Amazon Bedrock, Google Cloud Vertex AI, or Microsoft Foundry.

Anthropic Built the Agent. Can It Read Your Store?

Anthropic's commerce-agents blueprint supplies the shopping and merchant agents, but they only work against a business whose catalog, pricing, and availability an agent can actually retrieve and transact against. That readiness is the merchant's half of the equation. The A.G.E.N.T.I.C. Framework scores it across every agentic surface, from entity data and MCP integration through agent-completed transactions.

Ready to find out where you stand? Book your free Agentic Commerce audit

About This Article and Author

Authored by Shahzad Safri, Founder and Agentic Commerce expert at agenticplug.ai, combining insights from the Anthropic commerce agents announcement, Anthropic's commerce-agents repository and engineering deep-dive, the Claude platform docs, Accenture's Talk to my AI agent research, Stripe, and Google.

  • #anthropic
  • #claude-commerce-agents
  • #agentic-commerce
  • #mcp
  • #commerce-agents