Manage products, orders, customers, and coupons for your WooCommerce store — full e-commerce automation for AI agents.
Use with AI AssistantsMCP
Connect Claude, Cursor, or any MCP-compatible client — then call tools directly
① Add This MCP Server
Paste into your AI client config — then all its tools are available instantly.
{
"mcpServers": {
"woocommerce": {
"url": "https://mcp.aerostack.dev/s/aerostack/mcp-woocommerce",
"headers": {
"Authorization": "Bearer YOUR_AEROSTACK_TOKEN"
}
}
}
}Replace YOUR_AEROSTACK_TOKEN with your API token from the dashboard.
② Call a Tool
Ask your AI assistant to call a specific tool, or send raw JSON-RPC:
Natural Language Prompt
“Use the _ping tool to verify woocommerce credentials by calling a lightweight read endpoint. used internally by aerostack to validate credentials”
Using a Workspace?
Add this MCP to your Workspace — your team shares one token, secrets are stored securely, and every AI agent in the workspace can call it without per-user setup.
Automate your WooCommerce store — manage products, orders, customers, and coupons from any AI agent.
WooCommerce powers over 40% of all online stores worldwide. This MCP server gives your agents complete access to the WooCommerce REST API v3: listing and creating products, managing orders through their full lifecycle, creating and updating customers, applying coupon codes, and pulling sales reports — all without touching the WordPress admin panel.
Live endpoint: https://mcp.aerostack.dev/s/aerostack/mcp-woocommerce
| Tool | Description |
|---|---|
list_products | List products with filters: status, type, category, search. Pagination via page + per_page. |
get_product | Get full details of a product by ID |
create_product | Create a product — name, price, images, categories, SKU, stock |
update_product | Update product fields (price, stock, status, description) |
delete_product | Delete a product — trash or permanent |
list_product_categories | List product categories, filter by parent or search term |
list_orders | List orders filtered by status, date range, or customer |
get_order | Get full order details including line items, billing, and shipping |
create_order | Create an order with line items, addresses, and payment method |
update_order | Update order status or add a customer note |
delete_order | Delete an order — trash or permanent |
create_refund | Create a refund for an order with amount, reason, and line items |
list_customers | List customers — search, filter by email or role |
get_customer | Get full customer details including order history totals |
create_customer | Create a customer with billing and shipping addresses |
update_customer | Update customer name or addresses |
list_coupons | List coupons, search by code |
create_coupon | Create a coupon — percent, fixed cart, or fixed product discount |
get_store_settings | Get store general settings: currency, address, price format |
list_shipping_zones | List shipping zones with their configured methods |
get_sales_report | Get sales totals report for a period or date range |
list_order_statuses | Get all order statuses (including custom plugin statuses) |
| Variable | Required | Description | How to Get |
|---|---|---|---|
WOOCOMMERCE_CONSUMER_KEY | Yes | WooCommerce REST API Consumer Key | WooCommerce → Settings → Advanced → REST API → Add Key |
WOOCOMMERCE_CONSUMER_SECRET | Yes | WooCommerce REST API Consumer Secret | Shown once when the key is generated |
WOOCOMMERCE_STORE_URL | Yes | Your WooCommerce store URL (must be HTTPS) | The root URL of your WordPress + WooCommerce site |
WOOCOMMERCE_CONSUMER_KEY, WOOCOMMERCE_CONSUMER_SECRET, and WOOCOMMERCE_STORE_URL under Project → SecretsOnce added, every AI agent in your workspace can manage your WooCommerce store automatically.
"List all orders with status 'processing' from the last 7 days"
"Create a 20% off coupon called SPRING20 that expires on 2026-05-31"
"Update product ID 42 to set the sale price to $19.99"
"Get the sales report for last month"
"Find all customers who signed up with @gmail.com and list their order counts"
curl -X POST https://mcp.aerostack.dev/s/aerostack/mcp-woocommerce \
-H 'Content-Type: application/json' \
-H 'X-Mcp-Secret-WOOCOMMERCE-CONSUMER-KEY: ck_your_key' \
-H 'X-Mcp-Secret-WOOCOMMERCE-CONSUMER-SECRET: cs_your_secret' \
-H 'X-Mcp-Secret-WOOCOMMERCE-STORE-URL: https://mystore.com' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_orders","arguments":{"status":"processing","per_page":10}}}'
X-Mcp-Secret-* headers — never stored in environment variables at restWOOCOMMERCE_STORE_URL is validated before every request. HTTP URLs are rejected; private/local IP ranges (localhost, 127.x, 10.x, 172.16–31.x, 192.168.x) are blockedbase64(consumerKey:consumerSecret) — WooCommerce's official auth method for HTTPS endpointsMIT
Live Endpoint
https://mcp.aerostack.dev/s/aerostack/mcp-woocommerce
Sub-50ms globally · Zero cold start
@aerostack
Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.
by @aerostack
Discover and invoke any MCP, Function, or Skill published to the Aerostack marketplace — the universal AI capability hub.
by @aerostack
Search indexes, manage records, browse data, and configure ranking in Algolia — AI-native instant search access.
by @aerostack
Query documents, run AQL, traverse graphs, and manage collections in your ArangoDB database — AI-native multi-model database access.
by @aerostack
Post, schedule, and analyze social media across 13 platforms — Facebook, Instagram, X, LinkedIn, TikTok, Bluesky, Threads, Reddit, Pinterest, YouTube, Telegram, Snapchat, Google Business.
by @aerostack
Manage projects, to-dos, messages, schedules, and campfire chats in Basecamp — AI-native project management.
by @aerostack
Run SQL queries, list datasets and tables, inspect schemas, and export results from Google BigQuery — AI-native data warehouse access.
Yes. The Woocommerce MCP includes a create_product tool that lets Claude create products in your Woocommerce account from a plain-English prompt. You can also update and delete products — no Woocommerce UI needed.
Yes. The Woocommerce MCP includes tools to list and retrieve products from your Woocommerce account. Claude can filter, sort, and summarize products based on your instructions.
Yes. The Woocommerce MCP uses the open Model Context Protocol standard, so it works in Claude, Cursor, Windsurf, and any other MCP-compatible AI tool. All 22 Woocommerce tools are available everywhere you connect it — install once on Aerostack.
Yes. The Woocommerce MCP includes tools to update products in your Woocommerce account. Tell Claude what to change in plain English — it reads the current state and applies the update via the Woocommerce API.