ecommerce
Integrate and manage e-commerce operations such as orders, products, coupons, and payments with Brevo MCP Server. Perform actions like creating, updating, and retrieving data for streamlined e-commerce workflows.
Instructions
E-commerce integration - manage orders, products, coupons, and payments
Input Schema
Name | Required | Description | Default |
---|---|---|---|
categoryData | No | Category information | |
categoryId | No | Category ID | |
couponCollectionId | No | Coupon collection ID | |
couponData | No | Coupon collection data | |
limit | No | Number of items to retrieve | |
offset | No | Offset for pagination | |
operation | Yes | E-commerce operation to perform | |
orderData | No | Order information | |
orderId | No | Order ID | |
paymentData | No | Payment request data | |
productData | No | Product information | |
productId | No | Product ID |
Input Schema (JSON Schema)
{
"properties": {
"categoryData": {
"description": "Category information",
"type": "object"
},
"categoryId": {
"description": "Category ID",
"type": "string"
},
"couponCollectionId": {
"description": "Coupon collection ID",
"type": "string"
},
"couponData": {
"description": "Coupon collection data",
"type": "object"
},
"limit": {
"default": 50,
"description": "Number of items to retrieve",
"type": "number"
},
"offset": {
"default": 0,
"description": "Offset for pagination",
"type": "number"
},
"operation": {
"description": "E-commerce operation to perform",
"enum": [
"create_order",
"get_order",
"get_orders",
"update_order",
"create_batch_order",
"get_products",
"create_product",
"update_product",
"delete_product",
"create_update_batch_products",
"get_categories",
"create_category",
"update_category",
"delete_category",
"create_update_batch_category",
"get_coupon_collections",
"get_coupon_collection",
"create_coupon_collection",
"update_coupon_collection",
"create_coupons",
"create_payment_request",
"get_payment_request",
"delete_payment_request"
],
"type": "string"
},
"orderData": {
"description": "Order information",
"type": "object"
},
"orderId": {
"description": "Order ID",
"type": "string"
},
"paymentData": {
"description": "Payment request data",
"type": "object"
},
"productData": {
"description": "Product information",
"type": "object"
},
"productId": {
"description": "Product ID",
"type": "string"
}
},
"required": [
"operation"
],
"type": "object"
}