Preparing a WordPress Store for Agentic Commerce

Made on

Agentic Commerce Shopping Patterns in WordPress MCP
Brickwork in spiral pattern” by chris.rycroft is licensed under CC BY 2.0 .

When AI Agents Do the Shopping

Product discovery through AI search is just the beginning. The next frontier in e-commerce is already emerging: agentic commerce, where AI systems don’t just recommend products—they complete transactions on behalf of users.

ChatGPT’s shopping features, Perplexity’s “Buy with Pro” functionality, and emerging AI agent platforms are fundamentally changing the buyer’s journey. Instead of clicking through search results, comparing options across multiple tabs, and manually completing checkout forms, consumers are increasingly delegating purchase decisions to AI agents that understand their preferences, budget constraints, and specific requirements.

According to NielsenIQ’s 2026 Consumer Outlook report, every Chinese consumer surveyed has used a social media platform to purchase products, compared with 53% of global respondents. This digital-first purchasing behavior is expanding globally, with AI agents positioned to accelerate the trend dramatically. The question for e-commerce operators isn’t whether agentic commerce will impact their business, but how quickly they can adapt their infrastructure to support it.

What Is Agentic Commerce?

Agentic commerce represents a fundamental shift from user-driven to agent-driven purchasing. Instead of a consumer navigating your website, adding items to cart, and completing checkout, an AI agent performs these actions autonomously based on natural language instructions.

Product Recommendations (crawl)

AI systems suggest products based on user queries but require manual checkout. 

“ChatGPT, find me ANSI-rated safety gloves for metalworking”
The response includes product recommendations with links

Assisted Purchases (walk)

AI systems guide users through the purchase process but don’t complete transactions independently.

“Show me pricing for bulk orders of surgical masks”
The response includes pricing, negotiates on behalf of user, but the user completes checkout

Autonomous Transactions (run!)

AI systems complete purchases independently within defined parameters. The technical infrastructure required for this is being built now.

 “Order 500 units of our standard office supplies when inventory drops below 100”
The result isAI monitors inventory and places orders automatically

Agentic Commerce for B2B and Specialized Markets

Consumer brands focus on impulse purchases and recommendation engines. B2B manufacturers, healthcare suppliers, and enterprise vendors face different dynamics. The technical requirements for supporting agentic commerce in these contexts go far beyond basic e-commerce functionality:

  • Complex specifications
    Industrial components, medical devices, and specialized equipment require detailed technical data that AI agents must parse and match to requirements
  • Pricing complexity
    Volume discounts, contract pricing, and custom quotes demand flexible, programmatic pricing access
  • Compliance requirement 
    Regulated industries need verification of credentials, certifications, and authorization before completing transactions
  • Relationship-based selling
    Long sales cycles and account management don’t disappear—they transform into AI-mediated interactions that still require human oversight

WooCommerce Configuration

REST API

The WooCommerce REST API is the foundation of agentic commerce readiness. AI agents don’t navigate your website visually—they consume data through API endpoints.

Essential API endpoints to expose:

Products API

  • Full product catalog with detailed specifications
  • Real-time inventory levels
  • Pricing (including volume discounts and customer-specific pricing)
  • Product variations and attributes
  • Images and technical documentation

Orders API

  • Order creation and modification
  • Order status tracking
  • Shipping and fulfillment information

Customers API (B2B critical)

  • Customer account data
  • Purchase history
  • Contract terms and negotiated pricing
  • Credit limits and payment terms

API Authentication and Security

AI agents require secure, programmatic access to your store. This typically involves:

OAuth 2.0 implementation for enterprise AI systems that need ongoing access API keys for simpler integrations with specific AI platforms Rate limiting to prevent abuse while allowing legitimate agent activity Request logging to monitor AI agent behavior and identify optimization opportunities

On Pantheon-hosted WordPress sites, we implement API security through a combination of WooCommerce native authentication, custom middleware for rate limiting, and integration with Pantheon’s edge security features.

Structured Product Data Beyond Schema.org

While Schema.org markup helps AI systems discover and understand your products (covered in our GEO optimization guide), agentic commerce requires deeper, more granular product data.

Technical specifications as structured data:

  • Dimensional tolerances for manufactured components
  • Material composition and certifications
  • Compatibility matrices (works with X, requires Y)
  • Installation and maintenance requirements

Dynamic pricing data:

  • Quantity break pricing
  • Customer-tier pricing
  • Promotional pricing with eligibility rules
  • Shipping costs based on quantity and destination

Inventory and fulfillment data:

  • Real-time stock levels across multiple warehouses
  • Lead times for made-to-order items
  • Minimum order quantities
  • Shipping restrictions and special handling requirements

Example: Enhanced Product Data for AI Agents

This level of detail allows AI agents to evaluate fit, calculate total cost for specific quantities, verify availability, and make informed recommendations—all without human intervention.

json

{
  "product_id": "MC-3847-SS",
  "name": "Stainless Steel Machined Coupling - 3/4 inch",
  "specifications": {
    "material": "316 Stainless Steel",
    "dimensions": {
      "outer_diameter": "1.5 inches",
      "inner_diameter": "0.75 inches",
      "length": "2.25 inches",
      "tolerance": "+/- 0.005 inches"
    },
    "certifications": ["ISO 9001", "RoHS Compliant"],
    "temperature_range": "-40°F to 450°F",
    "pressure_rating": "3000 PSI"
  },
  "pricing": {
    "base_price": 24.50,
    "currency": "USD",
    "quantity_breaks": [
      {"min_qty": 50, "unit_price": 22.05},
      {"min_qty": 100, "unit_price": 19.60},
      {"min_qty": 500, "unit_price": 17.15}
    ]
  },
  "inventory": {
    "stock_status": "in_stock",
    "quantity_available": 847,
    "warehouse_locations": ["Milwaukee", "Chicago"],
    "lead_time_if_out_of_stock": "14 business days"
  },
  "compatibility": {
    "works_with": ["pump-series-400", "valve-assembly-220"],
    "replaces": ["competitor-part-XJ-440"]
  }
}

Transparent Pricing

AI agents cannot negotiate like human buyers, so pricing must be clearly defined and accessible programmatically.

Challenges in traditional B2B e-commerce:

  • “Call for pricing” is a non-starter for AI agents
  • Customer-specific contract pricing requires authentication
  • Volume discounts need clear, rule-based structures
  • Promotional pricing must include eligibility criteria

Solutions for agentic commerce:

  • Implement tiered pricing tables accessible via API with customer authentication
  •  Expose quote request functionalitythat allows AI agents to request pricing for custom configurations 
  • Provide shipping cost calculation via API before order submission 
  • Define minimum order values and quantities in machine-readable format

For Knihter clients in manufacturing and healthcare, we often implement custom pricing engines that integrate with ERP systems, ensuring AI agents receive the same pricing logic as human buyers while maintaining complex business rules around contracts, volume commitments, and customer relationships.

Treat AI Agents as Distributors?

One of the most important strategic decisions in preparing for agentic commerce is whether to treat AI agent platforms as distributors rather than direct customer accounts.

The distributor model for AI agents:

When an AI agent purchases products on behalf of a user, it’s functionally acting as a reseller or distributor—an intermediary between your business and the end customer. This is fundamentally different from a direct customer relationship.

In traditional e-commerce, customers authenticate, see their pricing, and place orders directly. With agentic commerce, the AI platform (ChatGPT, Perplexity, Claude, etc.) authenticates on behalf of many different end users, sources products from your catalog, and facilitates transactions.

This mirrors existing distributor relationships: a distributor maintains an account with you, accesses your catalog at negotiated pricing, and resells to their customers. The AI agent is doing the same thing—just programmatically.

Why the distributor structure makes sense:

1. Pricing flexibility by platform Different AI platforms may warrant different pricing strategies:

  • ChatGPT might drive high-volume, price-sensitive commodity purchases
  • Perplexity Pro users might accept premium pricing for curated recommendations
  • Enterprise AI agents (custom implementations) might negotiate contracted rates

Treating each platform as a distinct distributor lets you optimize pricing per channel.

2. Clean revenue attribution You can track exactly how much business comes through each AI platform:

  • “ChatGPT distributor” generated $47K in Q1
  • “Perplexity distributor” average order value is 23% higher
  • “Claude distributor” customers have better repeat purchase rates

This visibility is critical for understanding which AI platforms drive the most valuable traffic.

3. Risk management and transaction limits Set distributor-specific parameters:

  • Maximum order value without additional verification
  • Product category restrictions (can order consumables, not capital equipment)
  • Credit limits before requiring human approval
  • Return/exchange policies specific to agent transactions

4. Competitive pricing strategies Here’s where the strategic flexibility comes in:

Case for higher distributor pricing (premium for convenience): 

When purchase decisions are delegated to AI agents, price sensitivity may decrease. The convenience of automated ordering—no shopping, no comparison across multiple sites, no manual checkout—creates value that can command a premium. Users who trust an AI agent to make purchases may accept list pricing where they would otherwise negotiate.

Case for lower distributor pricing (competing on commodity markets): 

In markets where products are largely undifferentiated, AI agents will optimize for price. If your competitor’s pricing is lower for equivalent products, the agent will recommend them. A small price advantage could capture significant agent-driven volume, especially for consumable goods where brand loyalty is weak.

The distributor model gives you optionality: you’re not locked into a single pricing strategy. You can price aggressively for commodity categories to capture volume, while maintaining premium pricing on specialized products where differentiation justifies it.

Implementation in WooCommerce:

Using multivendor/marketplace plugins (Dokan, WCFM Marketplace, WC Vendors), you can set up AI platforms as distributor accounts:

“Distributor: ChatGPT Shopping”

  • Wholesale pricing tier (potentially 5% below retail for commodity items)
  • Access to full product catalog via API
  • Transaction limit: $10,000 per order before approval required
  • Commission structure: 3% of order value (if applicable)

“Distributor: Perplexity Pro”

  • Standard pricing (list price, targeting premium users)
  • Curated product access (best-sellers, high-margin items)
  • Transaction limit: $5,000 per order
  • Priority fulfillment (2-day shipping standard)

“Distributor: Enterprise_AI_Agent” (for specific corporate customers)

  • Negotiated contract pricing
  • Custom product catalogs per enterprise customer
  • Approval workflows integrated with customer’s procurement system
  • High transaction limits with established credit terms

How orders flow:

  1. End user asks AI agent: “Order safety gloves for our manufacturing facility”
  2. AI agent (acting as distributor) queries your API with their distributor credentials
  3. Your system returns products and distributor-specific pricing
  4. Agent presents options to user, user approves purchase
  5. Agent places order through your API as the distributor
  6. Order is fulfilled to end customer, but attributed to the distributor (AI platform) in your system
  7. You track revenue, conversion rates, and product performance by distributor

Strategic advantages:

This structure provides critical flexibility as agentic commerce evolves:

  • Test pricing strategies per AI platform and measure results
  • Segment by product category: aggressive pricing for commodities, premium pricing for specialized items
  • Negotiate platform relationships: As volume grows, you might offer better distributor terms to preferred AI platforms
  • Manage risk independently: If one platform generates problematic orders, you can adjust limits or suspend that distributor without affecting others

The key insight is that treating AI agents as distributors mirrors proven B2B commerce models while giving you the optionality to optimize pricing, risk management, and channel strategy as the market matures.

Payment Processing for Automated Transactions

When AI agents move from recommendation to actual purchasing, payment processing becomes critical. This requires:

  • Stored payment methods that AI agents can reference with appropriate authorization 
  • PCI compliance for handling payment data programmatically 
  • Payment verification to prevent unauthorized transactions 
  • Transaction limits to constrain agent purchasing authority

Implementation approach:

Many enterprise customers prefer purchase order workflows where AI agents create orders that route through approval processes before payment. This maintains human oversight while automating the research and ordering mechanics.

For organizations comfortable with autonomous purchasing, tokenized payment methods with transaction limits provide security. An AI agent might be authorized to spend up to $500/month on office supplies, for example, using a stored payment token but unable to exceed defined parameters.

Order Confirmation and Communication

AI agents need structured responses to confirm successful transactions and handle exceptions.

Required API responses:

  • Order confirmation with order number, line items, pricing, and estimated delivery
  •  Error handling with clear, actionable messages when transactions fail 
  • Status updates as orders are processed, shipped, and delivered 
  • Return and exchange procedures in machine-readable format

This enables AI agents to report back to users with confidence:

“I’ve ordered 100 units of part MC-3847-SS at $19.60 each. Order #45832 will ship from Milwaukee in 2 business days. Tracking information will be sent to your email.”

Multiple Competing Protocols

As agentic commerce rapidly evolves, multiple competing standards are emerging, each backed by major tech players. For WordPress and WooCommerce store owners, understanding this fragmented landscape is critical to making strategic decisions about which protocols to support.

Three Major Protocols (and Counting)

OpenAI’s Agentic Commerce Protocol (ACP)

  • Powers ChatGPT’s shopping features
  • Open specification with structured product feeds
  • Early adoption through plugins like AgenticCart
  • Focus: Discovery and checkout within ChatGPT interface

Stripe’s Agentic Commerce Protocol

  • Announced at Stripe Tour New York
  • WooCommerce is an official launch partner (as of October 2025)
  • Leverages Stripe’s payment infrastructure
  • Focus: Secure transactions with established payment rails

Google’s Universal Commerce Protocol (UCP)

  • Announced January 2026 with major retail partners
  • Launch partners: Shopify, BigCommerce, Etsy, Walmart, Target, Wayfair
  • Notable absence: WordPress/WooCommerce
  • Focus: Gemini AI shopping integration

The WordPress Representation Problem

As Joost de Valk (founder of Yoast) pointed out in his analysis “The silence is deafening: Google’s agentic future leaves the WordPress economy behind,” WooCommerce’s absence from Google’s UCP launch partners represents a potentially existential threat to the WordPress ecosystem.

When Google convenes meetings to define the future of commerce, they invite platform owners. For Shopify, that’s their CEO. For WooCommerce, that should be Automattic—but they weren’t at the table. This means the 30%+ of e-commerce sites running on WooCommerce risk being invisible to Google’s Gemini AI and the billions of searches it will process.

The downstream impact affects the entire WordPress economy: hosting companies (GoDaddy, WP Engine, Pantheon), plugin developers (StellarWP, Elementor), and thousands of agencies. If WooCommerce can’t “speak” to these AI agents, merchants will migrate to platforms that can—and the revenue streams supporting this ecosystem dry up.

WooCommerce’s MCP and Abilities API

To WooCommerce’s credit, they are not sitting idle. In October 2025, WooCommerce 10.3 introduced support for the Model Context Protocol (MCP), enabling AI assistants like Claude, Cursor, and VS Code to interact directly with WooCommerce stores.

As detailed in the WooCommerce Developer Blog, this implementation is built on the WordPress Abilities API—a foundational layer designed for extensibility. The initial version covers product and order management, with plans to expand to consumer shopping and checkout.

WooCommerce is also working with Stripe’s Agentic Commerce Protocol, positioning themselves to support at least two of the three major standards.

The Urgency for Individual Store Owners

Here’s the uncomfortable reality: While the platform battles rage between competing protocols, individual store owners cannot afford to wait for the dust to settle.

If you run a WooCommerce store selling to North American consumers, your competitors on Shopify may already be discoverable in ChatGPT (via ACP) and will soon be integrated with Google’s Gemini (via UCP). Every month you wait is a month where AI agents recommend your competitors’ products instead of yours.

The distributor model we discussed earlier provides strategic flexibility precisely because the protocol landscape is fragmented. You can:

  • Implement ACP today using plugins like AgenticCart ($29.99+/month) to become discoverable in ChatGPT
  • Prepare for Stripe’s protocol using native WooCommerce support (likely included in upcoming releases)
  • Monitor Google UCP and advocate for WordPress community representation

Rather than betting on a single protocol, treat each AI platform as a distributor with its own technical requirements and pricing strategy.

Agentic Commerce does NOT (Yet)

Agentic commerce is not a universal replacement for traditional e-commerce or sales processes. It’s a new channel. While the potential of AI-driven purchasing is significant, it’s important to understand the current limitations. Not every business model or product type is well-suited for agentic commerce in its present form.

The strategic opportunity is to identify which parts of your catalog fit the agentic model while maintaining traditional channels for everything else. This is why the distributor model we discussed earlier provides flexibility—you can control exactly which products AI agents can access and at what pricing, treating agentic commerce as one channel among many rather than an all-or-nothing commitment.

Complex Quoting and Custom Pricing

Agentic commerce protocols are designed for instant checkout with transparent, fixed pricing. AI agents want to complete transactions autonomously without human negotiation.  For complex B2B manufacturing where every order requires custom engineering or significant customization, agentic commerce may serve as a discovery tool rather than a transaction channel. Traditional sales processes still win for highly customized products.

In commodity markets where competitors display firm pricing, “request a quote” products will consistently lose to competitors offering transparent prices. AI agents recommend the path of least friction.

What breaks:

  • “Request a quote” workflows
  • Customer-specific contract pricing that requires verification
  • Volume discounts that depend on relationship history
  • Custom configurations requiring engineering review

Possible workarounds:

  • Display base pricing with “contact for volume discounts” messaging
  • Show price ranges: “Starting at $X for quantities under 100”
  • Enable search/discovery but disable checkout, routing to sales team
  • Implement tiered pricing tables that cover common quantity breaks

High-Touch Sales Consultation

Many specialized products—medical devices, industrial equipment, enterprise software—require technical consultation, compliance verification, or application engineering before purchase. Agentic commerce works well for repeat purchases of known products (“reorder our standard safety gloves”) but struggles with first-time purchases requiring expertise.

AI agents cannot:

  • Verify that a product meets specific regulatory requirements for the buyer’s jurisdiction
  • Conduct technical discovery to ensure proper fit
  • Assess compatibility with existing systems
  • Provide installation or integration guidance

Strategic approach:

  • Use agentic commerce for consumables and repeat orders
  • Route complex products to consultation workflows
  • Enable search/discovery for your full catalog
  • Provide clear product specifications that help AI agents identify obvious mismatches

Products You Don’t Sell

An interesting strategic question: Can you list products in your ACP feed that aren’t actually published on your WooCommerce site?

Technically: Yes. 

The ACP feed is separate from your storefront. You control which products have "enable_checkout": truevs. "enable_search": true only.

If you list products not available for immediate purchase, ensure they route to clear “contact for availability” or “custom order” workflows. Maintain consistency between what AI agents discover and what your sales team can actually deliver.

Potential use cases:

  • ChatGPT-exclusive offerings: Test new products only through AI discovery
  • Extended catalog visibility: Show your full manufacturing capabilities even if only core items have e-commerce checkout
  • Demand validation: List products you’re considering adding and measure AI agent recommendation rates before investing in inventory

Risks to consider:

  • Brand confusion: Users see products in ChatGPT they can’t find on your website
  • Customer service complexity: “I saw this in ChatGPT but your site says it doesn’t exist”
  • SEO opportunity cost: Products without landing pages miss traditional search traffic
  • Trust signals: Incomplete product presence may signal unreliability

Regulatory and Compliance Verification

For industries with purchase restrictions—medical devices requiring credentials, controlled substances, age-restricted products—current agentic commerce implementations lack sophisticated verification mechanisms.

What’s missing:

  • Professional license verification before checkout
  • Age verification beyond basic declarations
  • Regulatory compliance checking based on shipping destination
  • Documentation of controlled substance handling

Until these verification systems mature, regulated products should:

  • Enable discovery but route to manual verification workflows
  • Require account authentication with verified credentials before API access
  • Use the distributor model to gate certain products behind specific AI agent relationships

Thoughts on Balancing Automation with Security and Control

  • Set Transaction Limits
    Set maximum transaction values for AI agent purchases without human approval. For example, orders under $500 proceed automatically, while larger orders require manager sign-off.
  • Product Restrictions
    Define which product categories AI agents can purchase autonomously. Office supplies? Yes. Capital equipment? Requires approval.
  • Approval Workflows
    Implement staged approval based on transaction characteristics. High-value purchases, new vendors, or regulated products route through appropriate reviewers.
  • Audit Trails
    Maintain detailed logs of all AI agent activity: what was requested, what was ordered, pricing applied, and authorization granted. This supports both compliance requirements and continuous improvement.
  • Customer Whitelisting
    For B2B contexts, only allow AI agents associated with verified customer accounts to make purchases. This maintains existing customer relationships and contract terms.

KPI’s for Agentic Commerce

Traditional e-commerce metrics still matter, but agentic commerce introduces new KPIs:

  • API request volume: Track agent queries and conversion to orders
  • Agent success rate: Percentage of agent sessions resulting in completed purchases
  • Average order value (AOV) for agent purchases vs. traditional orders
  • Time from inquiry to purchase: How quickly agents complete transactions
  • Product Data completeness score: Percentage of products with full technical specifications
  • API error rate: Failed requests due to missing data or configuration issues
  • Agent abandonment: Queries that don’t convert due to data gaps
  • Revenue from agent transactions: Direct sales attributable to AI agent purchases
  • Customer acquisition: New customers discovered through AI agent recommendations
  • Order frequency: Do customers using AI agents order more frequently?
  • Customer satisfaction: Net Promoter Score (NPS) or Customer Satisfaction Score (CSAT) for agent-assisted purchases

How Knihter Prepares WooCommerce Stores for Agentic Commerce

At Knihter, we specialize in WordPress and WooCommerce development for clients in manufacturing, healthcare, education, and enterprise markets—exactly the sectors where agentic commerce will have the greatest near-term impact.

As a Pantheon Premier Partner managing over 60 WordPress sites, we have the infrastructure and expertise to build e-commerce platforms that are ready for the future of AI-driven purchasing.

Technical capabilities:

  • WooCommerce REST API implementation and optimization
  • Custom product data structures for complex specifications
  • ERP and inventory system integration
  • Secure authentication and authorization systems
  • Performance optimization on Pantheon hosting infrastructure

Strategic planning:

  • Agentic commerce readiness assessment
  • Phased implementation roadmaps
  • Industry-specific compliance and security requirements
  • Training for internal teams on agent transaction monitoring
  • Ongoing optimization based on agent interaction data

Agentic Commerce Now

Agentic commerce isn’t a distant future scenario. ChatGPT’s shopping features are live. Perplexity is testing direct purchasing. Enterprise AI platforms are building procurement agents. The infrastructure is being built today.

For manufacturers, healthcare suppliers, and B2B vendors, the question isn’t whether AI agents will influence your sales—it’s whether your systems will be ready when they arrive.

WordPress and WooCommerce provide the technical foundation, but it requires strategic implementation. Your product data needs to be comprehensive and structured. Your pricing needs to be transparent and programmatic. Your APIs need to be secure, performant, and well-documented.

The businesses that make these investments now will become the default suppliers in an agent-driven economy. Those that wait will find themselves invisible to the AI systems making purchasing decisions on behalf of their customers.

At Knihter, we’re actively monitoring these protocol developments and maintaining relationships with both WooCommerce core developers and plugin ecosystem partners. For manufacturing, healthcare, and enterprise clients, our recommendation is:

Ready to make your WordPress store agent-ready? Contact Knihter to discuss your agentic commerce strategy.

Additional Resources

For deeper technical and strategic context on agentic commerce in WordPress/WooCommerce: