Square MCP Server

Official

orders

Manage orders and checkout operations

Args: operation: The operation to perform. Valid operations: Orders: - create_order - batch_retrieve_orders - calculate_order - clone_order - search_orders - pay_order - update_order Checkout: - create_checkout - create_payment_link Custom Attributes: - upsert_order_custom_attribute - list_order_custom_attribute_definitions params: Dictionary of parameters for the specific operation

Input Schema

NameRequiredDescriptionDefault
operationYes
paramsYes

Input Schema (JSON Schema)

{ "properties": { "operation": { "title": "Operation", "type": "string" }, "params": { "title": "Params", "type": "object" } }, "required": [ "operation", "params" ], "title": "ordersArguments", "type": "object" }