PayPal MCP Server

Developmentstdiohttp-streamingv1.0.0
Repository

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.

Bağlan

Bu yapılandırmayı şuraya ekleyin: .claude/mcp.json

Taşıma:
{
  "mcpServers": {
    "paypal": {
      "command": "npx",
      "args": [
        "-y",
        "@paypal/mcp"
      ],
      "env": {
        "PAYPAL_ACCESS_TOKEN": "<YOUR_PAYPAL_ACCESS_TOKEN>"
      }
    }
  }
}

Araçlar (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"
    }
  }
}

Kaynaklar

Bu sunucu herhangi bir kaynak sunmuyor.

Prompt'lar

Bu sunucu herhangi bir prompt sunmuyor.

Sunucu bilgileri

Yazar
PayPal (@paypal)
Repository
https://github.com/paypal/agent-toolkit
Lisans
MIT
Sürüm
1.0.0
Yıldızlar
430
Son güncelleme
9 Temmuz 2026