npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@hegetiby/woocommerce-mcp

v1.0.1

Published

MCP server for WooCommerce — full store management: products, orders, customers, coupons, reports, analytics, settings, shipping, tax, webhooks

Downloads

238

Readme

@hegetiby/woocommerce-mcp

Full WooCommerce store management via MCP — 47 tools covering products, orders, customers, coupons, reports, analytics, settings, shipping, tax, webhooks, and WordPress media.

Built for the Model Context Protocol, works with Claude Desktop, Cursor, Windsurf, and any MCP-compatible client.

Why this one?

Other WooCommerce MCP servers give you 5-6 basic tools. This one gives you 47 - the full WooCommerce REST API v3 surface, including batch operations, analytics, refunds, webhooks, and system administration.

Quick Start

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "woocommerce": {
      "command": "npx",
      "args": ["-y", "@hegetiby/woocommerce-mcp"],
      "env": {
        "WOOCOMMERCE_URL": "https://your-store.com",
        "WOOCOMMERCE_KEY": "ck_your_consumer_key",
        "WOOCOMMERCE_SECRET": "cs_your_consumer_secret"
      }
    }
  }
}

Generate API keys in WordPress: WooCommerce > Settings > Advanced > REST API > Add Key (Read/Write).

All 47 Tools

Products (12): wc_products_list, wc_product_get, wc_product_create, wc_product_update, wc_product_delete, wc_products_batch, wc_variations_list, wc_variation_create, wc_variation_update, wc_categories_list, wc_category_create, wc_tags_list

Orders (8): wc_orders_list, wc_order_get, wc_order_create, wc_order_update, wc_order_delete, wc_order_notes_list, wc_order_note_create, wc_refund_create

Customers (3): wc_customers_list, wc_customer_get, wc_customer_create

Coupons (3): wc_coupons_list, wc_coupon_create, wc_coupon_delete

Reports & Analytics (7): wc_reports_sales, wc_reports_top_sellers, wc_reports_orders_totals, wc_reports_products_totals, wc_reports_customers_totals, wc_analytics_revenue, wc_analytics_products

Settings (3): wc_settings_list_groups, wc_settings_get_group, wc_setting_update

Shipping & Tax (4): wc_shipping_zones_list, wc_shipping_zone_methods, wc_tax_rates_list, wc_tax_classes_list

Webhooks (2): wc_webhooks_list, wc_webhook_create

System (3): wc_system_status, wc_system_status_tools, wc_system_status_tool_run

WordPress (2): wp_posts_list, wp_media_upload

Features

  • Dual auth: HTTPS uses Basic Auth, HTTP uses OAuth 1.0a HMAC-SHA256 - automatic
  • Pagination: Full support with x-wp-total / x-wp-totalpages headers
  • Batch operations: Create/update/delete up to 100 products at once
  • wc-analytics API for revenue and product stats
  • WordPress media sideloading from URL
  • Dual transport: stdio for local, SSE for remote/hosted

Example Conversations

  • "Which products are out of stock?"
  • "Show me orders from last week that are still processing"
  • "Create a 20% coupon WELCOME20, limit 100 uses, expires end of month"
  • "What were my top 10 sellers this month?"
  • "Set all products in Summer category to 30% off"

Environment Variables

| Variable | Required | Default | |----------|:---:|---------| | WOOCOMMERCE_URL | Yes | — | | WOOCOMMERCE_KEY | Yes | — | | WOOCOMMERCE_SECRET | Yes | — | | MCP_TRANSPORT | No | stdio | | MCP_PORT | No | 3801 |

SSE Mode

WOOCOMMERCE_URL=https://your-store.com WOOCOMMERCE_KEY=ck_xxx WOOCOMMERCE_SECRET=cs_xxx MCP_TRANSPORT=sse MCP_PORT=3801 npx @hegetiby/woocommerce-mcp

License

MIT