E-commerce integration

MCP for WooCommerce

Run your whole WooCommerce store from a prompt, ~120 operations over WooCommerce's own REST.

ProNeeds WooCommerce activewoo-read / woo-write

What the WooCommerce integration does

WooCommerce runs a huge share of the web's online stores, and its REST API exposes practically everything, products, orders, customers, coupons, reports, and store config. EMCP wraps that entire wc/v3 surface into two dispatcher tools, around 120 operations, so your AI can actually operate the store rather than just describe it.

Every call runs through WooCommerce's own controllers, so it's HPOS-safe (High-Performance Order Storage), always current with WooCommerce, and bound by WooCommerce's own permission checks. Reads are on by default; writes ship off; and money-moving or irreversible actions, refunds, deletes, batch operations, additionally require an explicit confirm, so the agent has to be deliberate about anything that spends money.

What your AI can do

Once WooCommerce is active, ask any MCP client, Claude, Cursor, or your own, to do these in plain language.

Example prompts

Real instructions you can hand your agent for WooCommerce.

"Find last week's processing orders and mark the paid ones as completed."

"Create a 20% coupon called SPRING20 that expires at the end of the month."

"Refund $20 on order #812 for a partial return."

Under the hood

Complete an order, then refund part of it, how EMCP drives WooCommerce.

woo-read({ operation: "get-order", arguments: { id: 812 } })
woo-write({ operation: "update-order", arguments: { id: 812, status: "completed" } })
woo-write({ operation: "create-refund",
  arguments: { order_id: 812, amount: "20.00", confirm: true } })

Note: Reads on by default; writes off. Refunds, deletes, and batch operations additionally require confirm:true. Pro EMCP integration.

The WooCommerce integration is part of EMCP Pro

WooCommerce reads and writes come with EMCP Pro, alongside every other Pro plugin integration, AI-assisted building, 50 premium templates, and 50+ prompts. The free plugin already includes the full Elementor, Gutenberg, WordPress, and Themes toolkits, Pro adds the deep third-party integrations.

Frequently asked

Is it safe to let an AI run my store?

Yes, by design. woo-read is on by default but woo-write ships disabled; refunds, deletes, and batch operations require an explicit confirm: true; and every call runs as the authenticated admin through WooCommerce's own REST controllers, so its permission checks apply, no privilege escalation and no bypassing WooCommerce.

Does it work with HPOS (High-Performance Order Storage)?

Yes. Because every operation goes through WooCommerce's own wc/v3 controllers, HPOS is handled transparently, you don't configure anything.

More integrations

All integrations

Point your AI at WooCommerce.

Install EMCP, connect any MCP client, and drive WooCommerce from a prompt. The core is free and runs entirely on your own server.