sales
BigCommerce MCP, CLI, and Lua Integration for AI Agents
BigCommerce integration docs for AI agents: MCP gateway setup, BigCommerce CLI commands, Lua API reference, credentials, and function schemas.
7 functions 6 read 1 write Bearer token auth
BigCommerce 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.
Machine-Readable Metadata
- integration_slug
bigcommerce- route_slug
bigcommerce- package
bigcommerce- auth_strategy
bearer_tokenBearer token- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. BigCommerce CLIHeadless setup and direct function calls. BigCommerce MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
BigCommerce MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for BigCommerce.
Claude Code BigCommerce MCP setup for Claude Code. Cursor BigCommerce MCP setup for Cursor. Codex BigCommerce MCP setup for Codex. OpenAI Agents BigCommerce MCP setup for OpenAI Agents SDK. Claude Agent SDK BigCommerce MCP setup for Claude Agent SDK. Vercel AI SDK BigCommerce MCP setup for Vercel AI SDK. LangChain BigCommerce MCP setup for LangChain. LangGraph BigCommerce MCP setup for LangGraph. CrewAI BigCommerce MCP setup for CrewAI. MCP clients BigCommerce MCP setup for Generic MCP Clients.
BigCommerce CLI Matrix
Use these pages for direct BigCommerce CLI workflows in scripts, CI, cron, and agent wrappers.
CI BigCommerce CLI for CI. Cron Jobs BigCommerce CLI for cron jobs. Shell Scripts BigCommerce CLI for shell scripts. Headless Automation BigCommerce CLI for headless automation. Coding Agents BigCommerce CLI for coding agents.
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
bigcommerce.bigcommerce_list_products | Read read | 8 | List products from the BigCommerce catalog. Supports pagination, filtering by name or SKU, and including variants/images. |
bigcommerce.bigcommerce_get_product | Read read | 2 | Get a single product from the BigCommerce catalog by its ID. Returns full product details. |
bigcommerce.bigcommerce_create_product | Write write | 13 | Create a new product in the BigCommerce catalog. Requires name, price, and type (physical, digital, or giftcertificate). |
bigcommerce.bigcommerce_list_orders | Read read | 8 | List orders from the BigCommerce store. Supports filtering by status, customer, and pagination. |
bigcommerce.bigcommerce_get_order | Read read | 1 | Get a single order from the BigCommerce store by its ID. Returns full order details including line items and totals. |
bigcommerce.bigcommerce_list_customers | Read read | 6 | List customers from the BigCommerce store. Supports filtering by name or email and pagination. |
bigcommerce.bigcommerce_get_current_user | Read read | 0 | Get the current user / storefront status from BigCommerce. Use this to verify the API connection is working. |