PayPal MCP

create_payment_token

Create a payment token

Input Schema

NameRequiredDescriptionDefault
customerYes
payment_sourceYes

Input Schema (JSON Schema)

{ "properties": { "customer": { "properties": { "email_address": { "type": "string" }, "id": { "type": "string" } }, "required": [ "id" ], "type": "object" }, "payment_source": { "properties": { "card": { "properties": { "expiry": { "type": "string" }, "name": { "type": "string" }, "number": { "type": "string" }, "security_code": { "type": "string" } }, "type": "object" }, "paypal": { "properties": { "email_address": { "type": "string" } }, "type": "object" } }, "type": "object" } }, "required": [ "customer", "payment_source" ], "type": "object" }