Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ›’ E-Commerce
  3. WooCommerce MCP Server
W
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/10/2026, 11:46:06 PM

WooCommerce MCP Server

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View Repository

82 MCP tools for WooCommerce β€” products, orders, customers, coupons, shipping, taxes, and more.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "woocommerce-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "woocommerce-mcp-server"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ›’ More in E-Commerce

Documentation Overview

mcp-server-woocommerce

CI npm License: MIT Node

MCP server for managing WooCommerce stores through AI assistants like Claude. Provides 101 tools covering products, orders, customers, coupons, shipping, taxes, webhooks, settings, reports, and more.

Quick Start

1. Get WooCommerce API keys

In your WordPress admin: WooCommerce > Settings > Advanced > REST API > Add key with Read/Write permissions.

2. Add to your AI tool

No install needed β€” runs directly via npx:

Claude Code

Add to your project's .mcp.json:

config.json
{
  "mcpServers": {
    "woocommerce": {
      "command": "npx",
      "args": ["-y", "@amitgurbani/mcp-server-woocommerce"],
      "env": {
        "WORDPRESS_SITE_URL": "https://store.example.com",
        "WOOCOMMERCE_CONSUMER_KEY": "ck_your_key",
        "WOOCOMMERCE_CONSUMER_SECRET": "cs_your_secret"
      }
    }
  }
}
Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS, %APPDATA%\Claude\claude_desktop_config.json on Windows):

config.json
{
  "mcpServers": {
    "woocommerce": {
      "command": "npx",
      "args": ["-y", "@amitgurbani/mcp-server-woocommerce"],
      "env": {
        "WORDPRESS_SITE_URL": "https://store.example.com",
        "WOOCOMMERCE_CONSUMER_KEY": "ck_your_key",
        "WOOCOMMERCE_CONSUMER_SECRET": "cs_your_secret"
      }
    }
  }
}
Cursor

Install in Cursor (one-click) or add to .cursor/mcp.json in your project root:

config.json
{
  "mcpServers": {
    "woocommerce": {
      "command": "npx",
      "args": ["-y", "@amitgurbani/mcp-server-woocommerce"],
      "env": {
        "WORDPRESS_SITE_URL": "https://store.example.com",
        "WOOCOMMERCE_CONSUMER_KEY": "ck_your_key",
        "WOOCOMMERCE_CONSUMER_SECRET": "cs_your_secret"
      }
    }
  }
}

4. Start using it β€” ask your AI assistant things like:

"List all products that are out of stock" "Create a 10% off coupon for orders over $50" "Show me this week's sales report"

Features

  • Full store management β€” CRUD operations for products, categories, tags, brands, orders, customers, and coupons
  • Product taxonomy β€” attributes, attribute terms, and variations with batch support
  • Shipping β€” zones, zone methods, and shipping classes
  • Taxes β€” tax rates and tax classes
  • Webhooks β€” create, manage, and monitor webhook subscriptions
  • Settings β€” read and update store configuration
  • Reports β€” sales reports, top sellers, order/product/customer totals
  • Media management β€” list, delete, and cleanup orphaned media via WordPress REST API
  • Token optimization β€” all tools support a fields param to return only specific fields, reducing response size by 60-97%
  • MCP resources β€” schema references for products, orders, coupons, refunds, and payment gateways that agents can read for context
  • Guided prompts β€” multi-step workflows for variable product setup, order processing, and catalog overview
  • Tool annotations β€” readOnlyHint, destructiveHint, and idempotentHint on all 101 tools for safe agent behavior
  • Actionable errors β€” error responses include guidance on how to fix common issues

Safety

This server connects to a LIVE WooCommerce store. Every create, update, and delete operation affects real data. Use caution, especially on production stores.

Before You Start

  • Back up your store before using destructive tools. Use a WordPress backup plugin or your host's backup feature.
  • Test on staging first. Clone your production store to a staging environment and point this server at the staging URL.
  • Use read-only mode when exploring. Set WOOCOMMERCE_MCP_READ_ONLY=true to block all write operations β€” only list, get, and report tools will work.

Irreversible Operations

Most delete operations move items to trash (recoverable). However, these are permanent and cannot be undone:

ToolWhy it's irreversible
delete_mediaWordPress media deletions bypass trash entirely
delete_tax_rateTax rates have no trash β€” deleted immediately
delete_tax_classTax classes have no trash β€” rates become orphaned
delete_attributeRemoves the attribute AND all its terms from every product
delete_refundRemoves refund record (does not reverse payment)
cleanup_orphaned_mediaPermanently deletes all unattached media when delete=true
run_system_toolSystem maintenance actions (cache clears, DB updates) cannot be undone

Cascading Effects

Some operations affect more than the single item being changed:

  • Deleting an attribute removes it from all products β€” variable products may break
  • Deleting an attribute term removes that option from all products and variations
  • Deleting a shipping zone removes all methods and locations in that zone
  • Batch operations (batch_update_attribute_terms, batch_update_variations) can create, update, AND delete in a single call

API Key Permissions

For maximum safety, create WooCommerce API keys with only the permissions you need:

  • Read-only exploration: Create a key with Read permissions only
  • Full management: Use Read/Write permissions

Available Tools (101)

DomainTools
Productslist, get, create, update, delete
Categorieslist, get, create, update, delete
Tagslist, get, create, update, delete
Brandslist, get, create, update, delete
Attributeslist, get, create, delete
Attribute Termslist, create, delete, batch update
Variationslist, get, create, update, batch update
Orderslist, get, create, update, delete
Order Refundslist, create, delete
Order Noteslist, create, delete
Customerslist, get, create, update
Couponslist, get, create, update, delete
Product Reviewslist, get, update, delete
Shipping Zoneslist, get, create, update, delete
Shipping Zone Methodslist, get, create, update, delete
Shipping Classeslist, create
Tax Rateslist, get, create, update, delete
Tax Classeslist, create, delete
Webhookslist, get, create, update, delete
Payment Gatewayslist, get, update
Settingslist groups, get, update
System Statusget status, list tools, run tool
Datalist countries, list currencies
Reportssales, top sellers, order/product/customer totals
Medialist, delete, cleanup orphaned

Resources

The server exposes 7 MCP resources that provide schema references and guides for AI agents:

URIDescription
woo://schema/productProduct fields, types, statuses, and key rules
woo://schema/orderOrder fields, status lifecycle, and payment info
woo://schema/couponCoupon types, limits, restrictions, and rules
woo://schema/refundRefund fields, reasons, line items, and processing rules
woo://reference/product-typesWhen to use simple, variable, grouped, or external products
woo://reference/order-statusesOrder status transitions and lifecycle diagram
woo://reference/payment-gatewaysAvailable payment gateways and their configuration options

Resources are read-only context that agents can fetch to understand WooCommerce data structures before making API calls.

Prompts

5 guided workflow prompts that orchestrate multi-step operations:

PromptArgsWhat it does
setup_variable_productproduct_name, attribute_name, variationsCreates a variable product end-to-end: attribute β†’ terms β†’ product β†’ variations β†’ publish
process_orderorder_idReviews an order's details and recommends the appropriate status transition
catalog_overview(none)Runs 5 tools in parallel to produce a store dashboard (products, orders, customers, categories, top sellers)
handle_refundorder_idGuides through refund processing: review order, select items, create refund, verify
moderate_reviews(none)Reviews pending product reviews and recommends approve/update/delete actions

Tool Annotations

Every tool is annotated with behavior hints so AI agents can make safe decisions:

AnnotationMeaningApplied to
readOnlyHintNo side effects, safe to call anytimeAll list_*, get_*, and report tools (46)
destructiveHintDeletes or removes dataAll delete_* tools + cleanup_orphaned_media + run_system_tool + batch_update_* (22)
idempotentHintSafe to retry, same result each timeAll update_* tools (15)

All tools also set openWorldHint: false β€” they only interact with WooCommerce, no external side effects.

Configuration

Environment Variables

VariableRequiredDescription
WORDPRESS_SITE_URLYesWordPress store URL (e.g. https://store.example.com)
WOOCOMMERCE_CONSUMER_KEYYesWooCommerce REST API consumer key (ck_...)
WOOCOMMERCE_CONSUMER_SECRETYesWooCommerce REST API consumer secret (cs_...)
WORDPRESS_USERNAMENoWordPress admin username (for media tools)
WORDPRESS_APP_PASSWORDNoWordPress Application Password (for media tools)
MCP_TRANSPORTNoSet to http for remote HTTP access (default: stdio)
PORTNoPlatform-provided port (Hostinger, Railway); overrides MCP_PORT
MCP_PORTNoHTTP server port (default: 3000)
MCP_AUTH_TOKENNo*Bearer token for HTTP auth (*required when MCP_TRANSPORT=http)
WOOCOMMERCE_MCP_READ_ONLYNoSet to true to block all write/delete operations (safe exploration mode)

Using a .env file

Instead of inlining credentials, point to a directory with a .env file:

config.json
{
  "mcpServers": {
    "woocommerce": {
      "command": "npx",
      "args": ["-y", "@amitgurbani/mcp-server-woocommerce"],
      "cwd": "/path/to/your/project"
    }
  }
}

Multiple Stores

Use different server names to manage multiple stores from one project:

config.json
{
  "mcpServers": {
    "store-a": {
      "command": "npx",
      "args": ["-y", "@amitgurbani/mcp-server-woocommerce"],
      "env": { "WORDPRESS_SITE_URL": "https://store-a.com", "..." }
    },
    "store-b": {
      "command": "npx",
      "args": ["-y", "@amitgurbani/mcp-server-woocommerce"],
      "env": { "WORDPRESS_SITE_URL": "https://store-b.com", "..." }
    }
  }
}

Token Optimization

All tools support an optional fields param (comma-separated) to return only specific fields:

text
# Browsing products β€” just names and prices
fields: "id,name,price"

# Stock check
fields: "id,name,stock_status,stock_quantity"

# Order overview
fields: "id,number,status,total"

This reduces response size by 60-97%, keeping AI context windows focused and costs low.

Development

bash
git clone https://github.com/AmitGurbani/mcp-server-woocommerce.git
cd mcp-server-woocommerce
pnpm install
bash
pnpm dev               # Watch mode
pnpm build             # Build
pnpm start             # Run directly
pnpm test              # Run unit tests
pnpm test:integration  # Run integration tests (requires Docker)
pnpm test:watch        # Run unit tests in watch mode
pnpm inspector         # Debug with MCP Inspector

Integration tests run against a real WordPress 6.9.4 + WooCommerce 10.5.3 instance via @wordpress/env. Prerequisite: Docker. The test environment starts automatically when you run pnpm test:integration.

Docker

Terminal
docker build -t mcp-server-woocommerce .
docker run \
  -e WORDPRESS_SITE_URL=https://store.example.com \
  -e WOOCOMMERCE_CONSUMER_KEY=ck_your_key \
  -e WOOCOMMERCE_CONSUMER_SECRET=cs_your_secret \
  mcp-server-woocommerce

Remote / Mobile Access (HTTP Transport)

For accessing your WooCommerce tools from Claude mobile, ChatGPT, or other remote clients, run the server in HTTP mode:

bash
MCP_TRANSPORT=http MCP_AUTH_TOKEN=your-secret-token node build/index.js

Or with Docker:

Terminal
docker run -p 3000:3000 \
  -e MCP_TRANSPORT=http \
  -e MCP_AUTH_TOKEN=your-secret-token \
  -e WORDPRESS_SITE_URL=https://store.example.com \
  -e WOOCOMMERCE_CONSUMER_KEY=ck_your_key \
  -e WOOCOMMERCE_CONSUMER_SECRET=cs_your_secret \
  mcp-server-woocommerce
VariableDefaultDescription
MCP_TRANSPORTstdioSet to http for remote access
PORTβ€”Platform-provided port (overrides MCP_PORT)
MCP_PORT3000HTTP server port
MCP_AUTH_TOKENβ€”Bearer token for authentication (Claude Desktop/Code)
AUTH0_DOMAINβ€”Auth0 tenant URL for OAuth 2.1 (Claude.ai Connectors)
AUTH0_AUDIENCEβ€”Auth0 API identifier for OAuth 2.1
MCP_SERVER_URLβ€”Public server URL for OAuth 2.1 discovery

Either MCP_AUTH_TOKEN or AUTH0_DOMAIN + AUTH0_AUDIENCE + MCP_SERVER_URL is required.

Deployment guide: See docs/DEPLOYMENT.md for step-by-step instructions for Railway ($0/mo), Fly.io ($0/mo with scale-to-zero), and Docker deployments.

Claude Desktop / Code: Use bearer token auth β€” add the server URL and Authorization: Bearer <token> header to your config.

Claude.ai web / mobile: Requires OAuth 2.1 via Auth0 (free tier). See the deployment guide for setup instructions.

Default mode remains stdio β€” existing npx users are unaffected.

License

MIT


WooCommerce is a registered trademark of Automattic Inc. This project is not affiliated with, endorsed by, or sponsored by Automattic Inc.

Related MCP Servers

View all in E-Commerce View all alternatives
  • S
    Store

    Custom metal-print storefront: catalog search, product details, shipping, reviews. Read-only.

    πŸ›’ E-Commerce0 views
    Compare vs Store β†’
  • Patchistry Mcp Server logoPatchistry Mcp Server

    Official MCP server for Patchistry, the first DTC fashion brand listed in the official MCP Registry. AI agent commerce tools for the velcro-patch hat system: listcanvases, listpatches, recommendbuild, getshipping, and contact. Helps ChatGPT, Claude, Cursor, and Perplexity recommend complete hat + patch builds when shoppers ask about custom hats, bachelorette gifts, dad gifts, or 4th of July drops. Install via npx -y patchistry-mcp-server.

    πŸ›’ E-Commerce0 views
    Compare vs Patchistry Mcp Server β†’
  • Buywhere Mcp logoBuywhere Mcp

    Cross-border e-commerce product catalog for AI agents. Search 3M+ products across Singapore, SEA, and US markets with price comparison and deal discovery. Install via npx @buywhere/mcp-server.

    πŸ›’ E-Commerce2 views
    Compare vs Buywhere Mcp β†’
  • Amazon In Mcp logoAmazon In Mcp

    Shop on amazon.in via LLM. Three tools: product search with "cheapest in stock" + "best value" picks, full product details (price, MRP, discount, rating, stock, seller), and Keepa price history chart links. No API keys, direct HTML scraping with retry on bot-check. Install: npx amazon-in-mcp-server.

    πŸ›’ E-Commerce1 views
    Compare vs Amazon In Mcp β†’

Frequently Asked Questions about WooCommerce MCP Server

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "woocommerce-mcp-server": { "command": "npx", "args": ["-y", "WooCommerce MCP Server"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewWooCommerce MCP Server AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/woocommerce-mcp-server?style=directory)](https://allmcps.com/mcp/woocommerce-mcp-server)
HTML Embed
<a href="https://allmcps.com/mcp/woocommerce-mcp-server"><img src="https://allmcps.com/api/badge/woocommerce-mcp-server?style=directory" alt="WooCommerce MCP Server on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ›’E-Commerce
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging Β· 27/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… FeaturedMoxie Docs MCP logo

Moxie Docs MCP

MCP & Agent Skills for Automated Documentation, and codebase conventions + context

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ›’ E-Commerce β†’Best MCP servers for E-Commerce β†’Alternatives to WooCommerce MCP Server β†’Install in Claude DesktopInstall in CursorInstall in VS Code