PayPal MCP Server

Developmentstdiohttp-streamingv1.0.0
Репозиторий

Official PayPal MCP server for commerce and payments. Lets AI agents create and capture orders, issue invoices, process refunds, manage subscriptions, and query transactions and disputes via the PayPal APIs. Useful for building checkout integrations, automating billing, and reconciling payments from an AI assistant.

Подключение

Добавьте эту конфигурацию в .claude/mcp.json

Подключение:
{
  "mcpServers": {
    "paypal": {
      "command": "npx",
      "args": [
        "-y",
        "@paypal/mcp"
      ],
      "env": {
        "PAYPAL_ACCESS_TOKEN": "<YOUR_PAYPAL_ACCESS_TOKEN>"
      }
    }
  }
}

Инструменты (2)

create_order

Create a PayPal order for a given amount and currency.

{
  "type": "object",
  "required": [
    "amount",
    "currency"
  ],
  "properties": {
    "amount": {
      "type": "string",
      "description": "Order amount as a decimal string"
    },
    "currency": {
      "type": "string",
      "description": "Three-letter ISO currency code"
    }
  }
}

create_refund

Refund a captured payment, fully or partially.

{
  "type": "object",
  "required": [
    "capture_id"
  ],
  "properties": {
    "amount": {
      "type": "string",
      "description": "Amount to refund (omit for full refund)"
    },
    "capture_id": {
      "type": "string",
      "description": "Capture ID to refund"
    }
  }
}

Ресурсы

Этот сервер не предоставляет ресурсы.

Промпты

Этот сервер не предоставляет промпты.

Сведения о сервере

Автор
PayPal (@paypal)
Репозиторий
https://github.com/paypal/agent-toolkit
Лицензия
MIT
Версия
1.0.0
Звёзды
430
Последнее обновление
9 июля 2026 г.