Free open-source e-commerce solution.
## PrestaShop MCP Server: European Commerce The **PrestaShop MCP Server** integrates PrestaShop's popular European e-commerce platform into Google Antigravity, enabling developers to manage online stores through AI-assisted commerce workflows. ### Why PrestaShop MCP? - **Popular in Europe**: Widely used across European markets - **Open Source**: Free core with premium modules - **Customizable**: Extensive theming and module system - **Multi-Language**: Built for international commerce - **SEO Friendly**: Strong SEO features out of the box ### Key Features #### 1. Product Management ```javascript // Create product const product = await prestashop.createProduct({ product: { id_category_default: 2, name: { language: [{ id: 1, value: "New Product" }] }, description: { language: [{ id: 1, value: "Description" }] }, price: 99.99, active: 1, reference: "PROD-001", quantity: 100 } }); // Update product await prestashop.updateProduct({ id: product.id, product: { price: 89.99, active: 1 } }); // Get products const products = await prestashop.getProducts({ filter: { active: 1 }, display: "full", limit: 50 }); ``` #### 2. Order Management ```javascript // Get orders const orders = await prestashop.getOrders({ filter: { current_state: 2 }, // Payment accepted display: "full" }); // Update order state await prestashop.updateOrder({ id: orders[0].id, order: { current_state: 4 // Shipped } }); // Get order details const orderDetails = await prestashop.getOrder({ id: orders[0].id, display: "full" }); // Create order history entry await prestashop.createOrderHistory({ id_order: orders[0].id, id_order_state: 4 }); ``` ### Configuration ```json { "mcpServers": { "prestashop": { "command": "npx", "args": ["-y", "@anthropic/mcp-prestashop"], "env": { "PRESTASHOP_URL": "https://your-store.com", "PRESTASHOP_API_KEY": "your-api-key" } } } } ``` ### Use Cases **Store Automation**: Automate PrestaShop store operations. **Inventory Sync**: Synchronize inventory with other systems. **Order Processing**: Streamline order fulfillment workflows. The PrestaShop MCP Server brings European e-commerce to your workflow.
{
"mcpServers": {
"prestashop": {}
}
}