Implements WebMCP commerce tools for product search, cart management, checkout, returns, subscriptions, and support on e-commerce sites for agentic shopping.
npx claudepluginhub orcaqubits/agentic-commerce-skills-plugins --plugin webmcp-browser-agentsThis skill is limited to using the following tools:
**Fetch live docs**:
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Automates semantic versioning and release workflow for Claude Code plugins: bumps versions in package.json, marketplace.json, plugin.json; verifies builds; creates git tags, GitHub releases, changelogs.
Fetch live docs:
https://developer.chrome.com/blog/webmcp for commerce-related examples and guidancewebmcp agentic commerce e-commerce tools examples for community implementationswebmcp shopping agent checkout cart tools for commerce workflow patternssite:github.com webmcp commerce for open-source commerce tool implementationsA typical agent-driven shopping session using WebMCP:
User: "Find me wireless headphones under $100"
→ Agent navigates to retailer site
→ Site registers tools: [searchProducts, viewDetails, addToCart, checkout]
→ Agent calls searchProducts(query="wireless headphones", maxPrice=100)
→ Site returns structured product list
→ Agent presents results to user
→ User: "Add the Sony ones to my cart"
→ Agent calls addToCart(productId="sony-wh-1000", quantity=1)
→ Agent: "Added! Proceed to checkout?"
→ User: "Yes, use my saved card"
→ Agent calls checkout(useSavedPayment=true)
→ Site: requestUserInteraction → User confirms → Order placed
→ Agent: "Order #1234 confirmed!"
Every e-commerce site should consider these tool categories:
searchProducts(query, filters) — Catalog search with optional filtersgetCategories() — List product categoriesviewProductDetails(productId) — Full product info, images, reviewscompareProducts(productIds) — Side-by-side comparisonaddToCart(productId, quantity, variant) — Add item to cartremoveFromCart(itemId) — Remove item from cartupdateCartQuantity(itemId, quantity) — Change quantitygetCartContents() — View current cartapplyCoupon(code) — Apply a discount codegetShippingOptions(address) — Available shipping methods and costscheckout(paymentMethod, shippingOption) — Complete purchasegetOrderSummary() — Pre-checkout order reviewgetOrderHistory(filters) — Past orders with optional date/status filtersgetOrderStatus(orderId) — Track a specific orderinitiateReturn(orderId, items, reason) — Start a returncancelOrder(orderId) — Cancel a pending ordermanageSubscription(action, planId) — Upgrade, downgrade, cancel subscriptionsgetSubscriptionDetails() — Current subscription infoupdateShippingAddress(address) — Update default addresscreateSupportTicket(type, description) — Open a support casecheckTicketStatus(ticketId) — Check on existing ticketAgents can navigate across multiple retailer sites:
Each site maintains its own tools; the agent coordinates across them.
WebMCP tools can delegate to backend protocols:
searchProducts tool calls a UCP product discovery APIcheckout tool creates a Stripe session server-sideFetch the latest WebMCP examples and commerce community patterns before building your tool set.