Rami Levy MCP Server

update_quantity

Update the quantity of an item in the cart

Input Schema

NameRequiredDescriptionDefault
idYesProduct identifier
newQuantityYesNew quantity for the product
storeYesStore identifier

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "id": { "description": "Product identifier", "type": "number" }, "newQuantity": { "description": "New quantity for the product", "minimum": 1, "type": "number" }, "store": { "description": "Store identifier", "type": "string" } }, "required": [ "store", "id", "newQuantity" ], "type": "object" }