Free open-source e-commerce platform.
## OpenCart MCP Server: Open Source Store The **OpenCart MCP Server** integrates OpenCart's open-source e-commerce platform into Google Antigravity, enabling developers to manage online stores through AI-assisted commerce workflows. ### Why OpenCart MCP? - **Open Source**: Free, community-driven platform - **Easy Setup**: Quick installation and configuration - **Extension Marketplace**: 13,000+ extensions available - **Multi-Store**: Manage multiple stores from one admin - **Multi-Language**: Built-in multi-language support ### Key Features #### 1. Product Management ```javascript // Create product const product = await opencart.createProduct({ model: "PROD-001", sku: "SKU-001", product_description: { 1: { // Language ID name: "New Product", description: "Product description", meta_title: "New Product | Store" } }, price: 99.99, quantity: 100, status: 1, product_category: [1, 2], product_image: [{ image: "catalog/product.jpg", sort_order: 0 }] }); // Update product await opencart.updateProduct({ product_id: product.product_id, price: 89.99, special: [{ price: 79.99, date_start: "2024-12-01", date_end: "2024-12-31" }] }); // Get products const products = await opencart.getProducts({ filter_category_id: 1, filter_status: 1 }); ``` #### 2. Order Processing ```javascript // Get orders const orders = await opencart.getOrders({ filter_order_status_id: 1, // Pending start: 0, limit: 50 }); // Update order status await opencart.updateOrderStatus({ order_id: orders[0].order_id, order_status_id: 3, // Shipped notify: true, comment: "Your order has been shipped" }); // Get order details const orderDetails = await opencart.getOrder({ order_id: orders[0].order_id }); ``` ### Configuration ```json { "mcpServers": { "opencart": { "command": "npx", "args": ["-y", "@anthropic/mcp-opencart"], "env": { "OPENCART_URL": "https://your-store.com", "OPENCART_API_KEY": "your-api-key" } } } } ``` ### Use Cases **Store Management**: Manage OpenCart stores programmatically. **Bulk Operations**: Update products and inventory in bulk. **Order Automation**: Automate order processing and notifications. The OpenCart MCP Server brings open-source e-commerce to your workflow.
{
"mcpServers": {
"opencart": {}
}
}