Wraps the WooCommerce REST API v3 so you can query store data directly from Claude. You get five tools covering the essentials: list and fetch individual products, orders, and customers. It's part of the Pipeworx gateway, which means you can either connect to this specific pack or tap into their full suite of 673+ data sources. Nice touch is the ask_pipeworx function that lets you skip manual tool calls and just ask questions in plain English. Reach for this when you're building workflows around e-commerce ops, need to pull order details for customer support, or want to analyze product catalogs without writing separate API clients.
WooCommerce MCP Pack — wraps the WooCommerce REST API v3
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
woo_list_products | List products from a WooCommerce store. |
woo_get_product | Get a single product by ID from a WooCommerce store. |
woo_list_orders | List orders from a WooCommerce store. |
woo_get_order | Get a single order by ID from a WooCommerce store. |
woo_list_customers | List customers from a WooCommerce store. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"woocommerce": {
"url": "https://gateway.pipeworx.io/woocommerce/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Woocommerce data" })
The gateway picks the right tool and fills the arguments automatically.
MIT