PayPal MCP

create_product

Create a new product in PayPal

Input Schema

NameRequiredDescriptionDefault
categoryYes
descriptionYes
home_urlNo
image_urlNo
nameYes
typeYes

Input Schema (JSON Schema)

{ "properties": { "category": { "type": "string" }, "description": { "type": "string" }, "home_url": { "type": "string" }, "image_url": { "type": "string" }, "name": { "type": "string" }, "type": { "enum": [ "PHYSICAL", "DIGITAL", "SERVICE" ], "type": "string" } }, "required": [ "name", "description", "type", "category" ], "type": "object" }