WooCommerce MCP Server
An MCP server that connects LLM agents to a WooCommerce store via its REST API, providing tools for managing products, orders, customers, coupons, and reports.
README
WooCommerce MCP Server
An MCP (Model Context Protocol) server that connects LLM agents to a WooCommerce store via its REST API (wp-json/wc/v3). It provides 40 tools covering products, product variations, categories, tags, orders, order notes, refunds, customers, coupons, and sales reports.
Setup
1. Generate WooCommerce API keys
- In WordPress admin, go to WooCommerce > Settings > Advanced > REST API
- Click Add key
- Give it a description, select a user, and choose Read/Write permissions
- Click Generate API key and copy the Consumer key and Consumer secret immediately (the secret is hidden afterwards)
Your store must use pretty permalinks (Settings > Permalinks) and should be served over HTTPS.
2. Install and build
npm install
npm run build
3. Configure environment variables
| Variable | Required | Description |
|---|---|---|
WOOCOMMERCE_STORE_URL |
Yes | Your store's base URL, e.g. https://mystore.com (no trailing slash needed) |
WOOCOMMERCE_CONSUMER_KEY |
Yes | Consumer key from step 1 |
WOOCOMMERCE_CONSUMER_SECRET |
Yes | Consumer secret from step 1 |
WOOCOMMERCE_API_VERSION |
No | Defaults to wc/v3 |
TRANSPORT |
No | stdio (default) or http |
PORT |
No | Port for HTTP transport (default 3000) |
4. Run
stdio (for local MCP clients like Claude Desktop):
WOOCOMMERCE_STORE_URL=https://mystore.com \
WOOCOMMERCE_CONSUMER_KEY=ck_xxx \
WOOCOMMERCE_CONSUMER_SECRET=cs_xxx \
node dist/index.js
Example Claude Desktop config entry:
{
"mcpServers": {
"woocommerce": {
"command": "node",
"args": ["/absolute/path/to/woocommerce-mcp-server/dist/index.js"],
"env": {
"WOOCOMMERCE_STORE_URL": "https://mystore.com",
"WOOCOMMERCE_CONSUMER_KEY": "ck_xxx",
"WOOCOMMERCE_CONSUMER_SECRET": "cs_xxx"
}
}
}
}
Streamable HTTP (for remote/multi-client use):
TRANSPORT=http PORT=3000 \
WOOCOMMERCE_STORE_URL=https://mystore.com \
WOOCOMMERCE_CONSUMER_KEY=ck_xxx \
WOOCOMMERCE_CONSUMER_SECRET=cs_xxx \
node dist/index.js
The server listens at http://localhost:3000/mcp.
Tools
All tools are prefixed woocommerce_ and use snake_case. Every list/get tool accepts a response_format parameter (markdown default, or json for structured data), and list tools support page/per_page pagination with a consistent envelope (total, count, has_more, next_page).
Products
woocommerce_list_products- search/filter products (status, type, category, tag, stock, price, sale)woocommerce_get_product- full product detailwoocommerce_create_product/woocommerce_update_product/woocommerce_delete_productwoocommerce_list_product_variations/woocommerce_get_product_variationwoocommerce_create_product_variation/woocommerce_update_product_variation/woocommerce_delete_product_variation
Categories & Tags
woocommerce_list_product_categories/_create_/_update_/_delete_product_categorywoocommerce_list_product_tags/_create_/_update_/_delete_product_tag
Orders
woocommerce_list_orders- filter by status, customer, date range, productwoocommerce_get_order- full order detail (line items, addresses, totals)woocommerce_create_order/woocommerce_update_order/woocommerce_delete_orderwoocommerce_list_order_notes/woocommerce_create_order_notewoocommerce_list_order_refunds/woocommerce_create_order_refund(destructive financial operation)
Customers
woocommerce_list_customers/woocommerce_get_customerwoocommerce_create_customer/woocommerce_update_customer/woocommerce_delete_customer
Coupons
woocommerce_list_coupons/woocommerce_get_couponwoocommerce_create_coupon/woocommerce_update_coupon/woocommerce_delete_coupon
Reports
woocommerce_get_sales_report- totals for a period or custom date rangewoocommerce_get_top_sellers_report- best-selling products for a periodwoocommerce_get_report_totals- status/count breakdown for orders, products, customers, coupons, or reviews
Design notes
- Auth: HTTP Basic Auth with the consumer key/secret, as recommended for HTTPS stores. If your server can't parse Basic Auth headers (rare, usually FastCGI setups), WooCommerce also accepts
consumer_key/consumer_secretas query params - not implemented here since Basic Auth covers the vast majority of installs. - Pagination: mirrors WooCommerce's own
page/per_pagemodel and echoes backX-WP-Total/X-WP-TotalPagesresponse headers. - Response size: responses are capped at ~25,000 characters; list tools truncate their
itemsarray with atruncation_messagetelling the agent how to narrow its query instead of silently dropping data. - Destructive actions:
delete_*andcreate_order_refundtools are annotateddestructiveHint: true. Deletes default to WooCommerce's trash behavior where supported (force=false); refunds are irreversible and the tool description calls this out explicitly. - Line-item edits on existing orders are intentionally out of scope for
woocommerce_update_orderto avoid an agent accidentally corrupting totals/stock counts; usewoocommerce_create_orderfor new orders andwoocommerce_create_order_refundfor post-hoc adjustments.
Development
npm run dev # tsx watch mode
npm run build # compile TypeScript to dist/
npm run clean # remove dist/
Test with the MCP Inspector:
npx @modelcontextprotocol/inspector node dist/index.js
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。