Google Antigravity Directory

The #1 directory for Google Antigravity prompts, rules, workflows & MCP servers. Optimized for Gemini 3 agentic development.

Resources

PromptsMCP ServersAntigravity RulesGEMINI.md GuideBest Practices

Company

Submit PromptAntigravityAI.directory

Popular Prompts

Next.js 14 App RouterReact TypeScriptTypeScript AdvancedFastAPI GuideDocker Best Practices

Legal

Privacy PolicyTerms of ServiceContact Us
Featured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowFeatured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App Show

© 2026 Antigravity AI Directory. All rights reserved.

The #1 directory for Google Antigravity IDE

This website is not affiliated with, endorsed by, or associated with Google LLC. "Google" and "Gemini" are trademarks of Google LLC.

Antigravity AI Directory
PromptsMCPBest PracticesUse CasesLearn
Home
MCP Servers
BigCommerce
store

BigCommerce MCP Server

BigCommerce store management

e-commercestoreproducts

About

## 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.

Installation

Configuration
{
  "mcpServers": {
    "bigcommerce": {
      "mcpServers": {
        "bigcommerce": {
          "env": {
            "BC_STORE_HASH": "your-store-hash",
            "BC_ACCESS_TOKEN": "your-access-token"
          },
          "args": [
            "-y",
            "bigcommerce-mcp-server"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 1Get API credentials from BigCommerce admin
  2. 2Configure store hash and access token
  3. 3Add to Claude Desktop config

Related MCP Servers

🧰

Toolhouse MCP

Universal AI tool platform that equips your AI with production-ready capabilities. Execute code, browse the web, manage files, send emails, and more through a unified MCP interface.

🔨

Smithery Registry MCP

The MCP server registry and discovery platform. Browse, search, and install MCP servers from the community. Find the perfect integrations for your AI development workflow.

🔍

MCP Inspector

Official debugging and testing tool for MCP servers. Inspect server capabilities, test tool calls, validate responses, and debug protocol communication in real-time.

← Back to All MCP Servers