Community MCP server for WooCommerce, the open-source e-commerce plugin for WordPress. Agents can manage products and variations, process orders, handle customer accounts, create coupons, and query sales reports. Uses the WooCommerce REST API. Suitable for WordPress-based online stores needing AI-powered product and order management.
npx -y woocommerce-mcp-server
{
"mcpServers": {
"woocommerce": {
"env": {
"WC_URL": "https://your-store.com",
"WC_CONSUMER_KEY": "ck_xxx",
"WC_CONSUMER_SECRET": "cs_xxx"
},
"args": [
"-y",
"woocommerce-mcp-server"
],
"command": "npx"
}
}
}Create WooCommerce order
{
"type": "object",
"required": [
"line_items"
],
"properties": {
"billing": {
"type": "object"
},
"line_items": {
"type": "array"
}
}
}// Input
{
"line_items": [
{
"quantity": 1,
"product_id": 1
}
]
}// Output
{
"id": 101,
"status": "processing"
}List WooCommerce products
{
"type": "object",
"required": [],
"properties": {
"category": {
"type": "string"
},
"per_page": {
"type": "integer"
}
}
}// Input
{
"per_page": 10
}// Output
{
"products": [
{
"id": 1,
"name": "Hoodie",
"price": "49.99"
}
]
}Community MCP server for WooCommerce, the open-source e-commerce plugin for WordPress. Agents can manage products and variations, process orders, handle customer accounts, create coupons, and query sales reports. Uses the WooCommerce REST API. Suitable for WordPress-based online stores needing AI-powered product and order management.
WooCommerce provides 2 tools including create_order, list_products.
Yes, WooCommerce is completely free to use with no usage limits on the free tier.
You can install WooCommerce using the following command: npx -y woocommerce-mcp-server. After installation, add the provided config snippet to your Claude Desktop or Cursor configuration.
WooCommerce is listed under the Finance & Accounting category in the AgentForge MCP registry.
WooCommerce has a current uptime of 99.72% with an average response time of 350ms.
To connect WooCommerce, click the "Connect Agent" button on this page to get the configuration snippet. Add it to your MCP client (Claude Desktop, Cursor, or any MCP-compatible tool). Your AI agent will then have access to all of WooCommerce's tools via the Model Context Protocol.