KosmoKrator

productivity

WooCommerce MCP, CLI, and Lua Integration for AI Agents

WooCommerce integration docs for AI agents: MCP gateway setup, WooCommerce CLI commands, Lua API reference, credentials, and function schemas.

WooCommerce for agents

Credentials can be configured manually in web or CLI hosts.

Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.

Agent Surfaces

Machine-Readable Metadata

Function Catalog

FunctionTypeParametersDescription
woocommerce.woocommerce_list_products Read read 8 List products from the WooCommerce catalog. Supports pagination, filtering by name or SKU, and including variants/images.
woocommerce.woocommerce_get_product Read read 1 Get a single product from the WooCommerce catalog by its ID. Returns full product details.
woocommerce.woocommerce_create_product Write write 12 Create a new product in the WooCommerce catalog. Requires name and regular_price. Supports type (simple, grouped, external, variable), SKU, description, and more.
woocommerce.woocommerce_list_orders Read read 8 List orders from the WooCommerce store. Supports filtering by status, customer, and pagination.
woocommerce.woocommerce_get_order Read read 1 Get a single order from the WooCommerce store by its ID. Returns full order details including line items and totals.
woocommerce.woocommerce_list_customers Read read 5 List customers from the WooCommerce store. Supports filtering by name or email and pagination.
woocommerce.woocommerce_get_current_user Read read 0 Get the system status from WooCommerce. Use this to verify the API connection is working and retrieve store information.