Shopify store management and API integration
## Shopify MCP Server: Commerce Platform The **Shopify MCP Server** integrates Shopify's leading e-commerce platform into Google Antigravity, enabling developers to manage stores, products, and orders through AI-assisted commerce workflows. ### Why Shopify MCP? - **Market Leader**: Powers millions of merchants worldwide - **Ecosystem**: Thousands of apps and integrations - **Multi-Channel**: Sell on web, mobile, social, and marketplaces - **Shopify Plus**: Enterprise features for high-volume merchants - **Developer Friendly**: Comprehensive APIs and tooling ### Key Features #### 1. Product Management ```javascript // Create product const product = await shopify.createProduct({ title: "Premium Product", body_html: "<p>Product description</p>", vendor: "Your Brand", product_type: "Electronics", variants: [ { price: "99.99", sku: "PROD-001", inventory_quantity: 100, inventory_management: "shopify" } ], images: [{ src: "https://..." }] }); // Update product await shopify.updateProduct({ id: product.id, title: "Updated Premium Product", variants: [{ id: variant.id, price: "89.99" }] }); // Get products const products = await shopify.getProducts({ limit: 50, status: "active" }); ``` #### 2. Order Processing ```javascript // Get orders const orders = await shopify.getOrders({ status: "open", fulfillment_status: "unfulfilled" }); // Create fulfillment await shopify.createFulfillment({ orderId: orders[0].id, tracking_number: "1Z999AA10123456784", tracking_company: "UPS", line_items: [{ id: lineItemId, quantity: 1 }] }); // Capture payment await shopify.captureTransaction({ orderId: orders[0].id, transactionId: transaction.id, amount: "99.99" }); ``` ### Configuration ```json { "mcpServers": { "shopify": { "command": "npx", "args": ["-y", "@anthropic/mcp-shopify"], "env": { "SHOPIFY_STORE_URL": "your-store.myshopify.com", "SHOPIFY_ACCESS_TOKEN": "your-access-token" } } } } ``` ### Use Cases **Store Management**: Manage Shopify stores programmatically. **Inventory Sync**: Keep inventory synchronized across channels. **Order Automation**: Automate order fulfillment workflows. The Shopify MCP Server brings leading e-commerce to your development workflow.
{
"mcpServers": {
"shopify": {
"mcpServers": {
"shopify": {
"env": {
"SHOPIFY_STORE_URL": "your-store.myshopify.com",
"SHOPIFY_ACCESS_TOKEN": "your-access-token"
},
"args": [
"-y",
"@anthropic/shopify-mcp-server"
],
"command": "npx"
}
}
}
}
}