Rami Levy MCP Server

remove_from_cart

Remove items from the cart by providing an updated list of items to keep

Input Schema

NameRequiredDescriptionDefault
itemsYesUpdated list of items to keep in cart
storeYesStore identifier

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "items": { "description": "Updated list of items to keep in 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", "type": "string" } }, "required": [ "store", "items" ], "type": "object" }