sales
BigCommerce MCP Integration for CrewAI
Connect BigCommerce to CrewAI through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect BigCommerce 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.
BigCommerce MCP Config for CrewAI
Use per-worker integration scopes to avoid giving every worker every tool.
{
"mcpServers": {
"kosmokrator-bigcommerce": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=bigcommerce",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=bigcommerce --write=deny Why Use KosmoKrator Here
Expose only BigCommerce instead of a broad multi-service tool list.
Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.
Start read-only, then opt into ask or allow for trusted workspaces.
BigCommerce Tools Visible to CrewAI
CrewAI sees stable MCP tool names generated from the BigCommerce integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__bigcommerce__bigcommerce_list_products | bigcommerce.bigcommerce_list_products | Read | List products from the BigCommerce catalog. Supports pagination, filtering by name or SKU, and including variants/images. |
integration__bigcommerce__bigcommerce_get_product | bigcommerce.bigcommerce_get_product | Read | Get a single product from the BigCommerce catalog by its ID. Returns full product details. |
integration__bigcommerce__bigcommerce_create_product | bigcommerce.bigcommerce_create_product | Write | Create a new product in the BigCommerce catalog. Requires name, price, and type (physical, digital, or giftcertificate). |
integration__bigcommerce__bigcommerce_list_orders | bigcommerce.bigcommerce_list_orders | Read | List orders from the BigCommerce store. Supports filtering by status, customer, and pagination. |
integration__bigcommerce__bigcommerce_get_order | bigcommerce.bigcommerce_get_order | Read | Get a single order from the BigCommerce store by its ID. Returns full order details including line items and totals. |
integration__bigcommerce__bigcommerce_list_customers | bigcommerce.bigcommerce_list_customers | Read | List customers from the BigCommerce store. Supports filtering by name or email and pagination. |
integration__bigcommerce__bigcommerce_get_current_user | bigcommerce.bigcommerce_get_current_user | Read | Get the current user / storefront status from BigCommerce. Use this to verify the API connection is working. |