Run your whole WooCommerce store from a prompt, ~120 operations over WooCommerce's own REST.
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.
Once WooCommerce is active, ask any MCP client, Claude, Cursor, or your own, to do these in plain language.
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."
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.
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.
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.
Yes. Because every operation goes through WooCommerce's own wc/v3 controllers, HPOS is handled transparently, you don't configure anything.
Build and edit Elementor pages from a prompt, containers, widgets, templates, and global styles.
Page buildersEdit the WordPress block editor incrementally, insert, update, move, and remove blocks by path.
Page buildersRead your Contact Form 7 forms, fields, and mail templates, and let your AI tune them.
FormsRead WPForms forms, notifications, and entries, and manage submissions with your AI.
FormsRead Gravity Forms forms, notifications, and entries over the GFAPI, with full entry management.
FormsRead Fluent Forms forms and submissions, set status and clean up entries with your AI.
FormsInstall EMCP, connect any MCP client, and drive WooCommerce from a prompt. The core is free and runs entirely on your own server.