KosmoKrator

sales

WooCommerce MCP Integration for CrewAI

Connect WooCommerce to CrewAI through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.

7 functions 6 read 1 write Bearer token auth

Connect WooCommerce to CrewAI

Expose KosmoKrator integrations to CrewAI workers as scoped local tools.

Wrap kosmo integrations:call for specific tasks or connect workers to a local MCP gateway. The gateway is local, scoped to this integration, and starts with --write=deny so CrewAI can inspect read-capable tools without receiving write access by default.

WooCommerce MCP Config for CrewAI

Use per-worker integration scopes to avoid giving every worker every tool.

{
  "mcpServers": {
    "kosmokrator-woocommerce": {
      "type": "stdio",
      "command": "kosmo",
      "args": [
        "mcp:serve",
        "--integration=woocommerce",
        "--write=deny"
      ]
    }
  }
}

Run the Gateway Manually

kosmokrator mcp:serve --integration=woocommerce --write=deny

Why Use KosmoKrator Here

Scoped tools

Expose only WooCommerce instead of a broad multi-service tool list.

Local credentials

Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.

Write policy

Start read-only, then opt into ask or allow for trusted workspaces.

WooCommerce Tools Visible to CrewAI

CrewAI sees stable MCP tool names generated from the WooCommerce integration catalog.

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

Related WooCommerce Pages