Rami Levy MCP Server

add_to_cart

Add one or more items to the shopping cart

Input Schema

NameRequiredDescriptionDefault
itemsYesList of items to add to cart
storeYesStore identifier (e.g., '331')

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "items": { "description": "List of items to add to cart", "items": { "additionalProperties": false, "properties": { "id": { "description": "Product identifier", "type": "number" }, "quantity": { "description": "Quantity of the product", "minimum": 1, "type": "number" } }, "required": [ "id", "quantity" ], "type": "object" }, "type": "array" }, "store": { "description": "Store identifier (e.g., '331')", "type": "string" } }, "required": [ "store", "items" ], "type": "object" }