BigCommerce store management
## BigCommerce MCP Server: E-commerce Platform The **BigCommerce MCP Server** integrates BigCommerce's enterprise e-commerce platform into Google Antigravity, enabling developers to manage stores, products, and orders through AI-assisted commerce workflows. ### Why BigCommerce MCP? - **Enterprise Scale**: Built for high-volume merchants - **Headless Commerce**: API-first architecture for custom storefronts - **Multi-Channel**: Sell on Amazon, eBay, Facebook, and more - **B2B Features**: Customer groups, quote management, and pricing tiers - **Open Ecosystem**: 800+ apps and integrations ### Key Features #### 1. Product Management ```javascript // Create product const product = await bigcommerce.createProduct({ name: "Premium Headphones", type: "physical", price: 199.99, weight: 0.5, categories: [23, 24], availability: "available", inventory_tracking: "product", inventory_level: 100, images: [{ image_url: "https://..." }] }); // Update product await bigcommerce.updateProduct({ id: product.id, price: 179.99, sale_price: 149.99 }); // Get product variants const variants = await bigcommerce.getProductVariants({ productId: product.id }); ``` #### 2. Order Processing ```javascript // Get orders const orders = await bigcommerce.getOrders({ status_id: 11, // Awaiting Fulfillment min_date_created: "2024-12-01" }); // Update order status await bigcommerce.updateOrder({ orderId: orders[0].id, status_id: 2 // Shipped }); // Create shipment await bigcommerce.createOrderShipment({ orderId: orders[0].id, tracking_number: "1Z999AA10123456784", shipping_provider: "ups", items: [{ order_product_id: 123, quantity: 1 }] }); ``` ### Configuration ```json { "mcpServers": { "bigcommerce": { "command": "npx", "args": ["-y", "@anthropic/mcp-bigcommerce"], "env": { "BIGCOMMERCE_STORE_HASH": "your-store-hash", "BIGCOMMERCE_ACCESS_TOKEN": "your-access-token" } } } } ``` ### Use Cases **Headless Commerce**: Build custom storefronts with BigCommerce backend. **Multi-Channel Sync**: Synchronize products and inventory across channels. **B2B Commerce**: Manage enterprise customers with custom pricing. The BigCommerce MCP Server brings enterprise e-commerce to your development workflow.
{
"mcpServers": {
"bigcommerce": {
"mcpServers": {
"bigcommerce": {
"env": {
"BC_STORE_HASH": "your-store-hash",
"BC_ACCESS_TOKEN": "your-access-token"
},
"args": [
"-y",
"bigcommerce-mcp-server"
],
"command": "npx"
}
}
}
}
}