PayPal MCP

create_order

Create a new order in PayPal

Input Schema

NameRequiredDescriptionDefault
intentYes
purchase_unitsYes

Input Schema (JSON Schema)

{ "properties": { "intent": { "enum": [ "CAPTURE", "AUTHORIZE" ], "type": "string" }, "purchase_units": { "items": { "properties": { "amount": { "properties": { "currency_code": { "type": "string" }, "value": { "type": "string" } }, "required": [ "currency_code", "value" ], "type": "object" }, "description": { "type": "string" }, "reference_id": { "type": "string" } }, "required": [ "amount" ], "type": "object" }, "type": "array" } }, "required": [ "intent", "purchase_units" ], "type": "object" }