Skip to main content
Glama

PayPal MCP Server

Un-Official PayPal MCP Server

PayPal MCP Server

A Python implementation of a Model Context Protocol (MCP) server for PayPal API integrations. This server enables Large Language Models (LLMs) to interact with PayPal's APIs through function calling.

Features

  • Full implementation of the Model Context Protocol for PayPal APIs
  • Support for all major PayPal API endpoints:
    • Invoices: Create, list, view, send, remind, cancel, QR codes
    • Orders: Create, get, capture
    • Products: Create, list, view, update
    • Subscription Plans: Create, list, view
    • Subscriptions: Create, view, cancel
    • Shipments: Create, track
    • Disputes: List, view, accept
    • Transactions: List and filter

Installation

From PyPI

pip install paypal-mcp-server

From Source

git clone https://github.com/yourusername/paypal-mcp-server.git cd paypal-mcp-server pip install -e .

Using Docker

docker pull ghcr.io/yourusername/paypal-mcp-server:latest

Usage

Command Line

# Using environment variables export PAYPAL_ACCESS_TOKEN="your_access_token" export PAYPAL_ENVIRONMENT="SANDBOX" # or "PRODUCTION" paypal-mcp --tools=all # Or with command line arguments paypal-mcp --tools=all --access-token=your_access_token --paypal-environment=SANDBOX

Enable Specific Tools Only

paypal-mcp --tools=invoices.create,invoices.list,orders.create --access-token=your_token

With Docker

docker run -e PAYPAL_ACCESS_TOKEN="your_access_token" -e PAYPAL_ENVIRONMENT="SANDBOX" ghcr.io/yourusername/paypal-mcp-server:latest --tools=all

Integration with Claude Desktop

Add the following to your ~/Claude/claude_desktop_config.json:

{ "mcpServers": { "paypal": { "command": "paypal-mcp", "args": [ "--tools=all" ], "env": { "PAYPAL_ACCESS_TOKEN": "YOUR_PAYPAL_ACCESS_TOKEN", "PAYPAL_ENVIRONMENT": "SANDBOX" } } } }

Obtaining a PayPal Access Token

You can generate a PayPal access token using your client ID and client secret:

curl -v https://api-m.sandbox.paypal.com/v1/oauth2/token \ -H "Accept: application/json" \ -H "Accept-Language: en_US" \ -u "CLIENT_ID:CLIENT_SECRET" \ -d "grant_type=client_credentials"

Development

Setup Development Environment

# Clone the repository git clone https://github.com/yourusername/paypal-mcp-server.git cd paypal-mcp-server # Install dev dependencies pip install -e ".[dev]" # Install pre-commit hooks pre-commit install

Running Tests

pytest -xvs

Building the Package

python -m build

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgments

-
security - not tested
A
license - permissive license
-
quality - not tested

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

関数呼び出しを通じて大規模言語モデルが PayPal の API と対話できるようにし、請求書、注文、製品、サブスクリプション、取引などの機能をサポートする Python 実装。

  1. 特徴
    1. インストール
      1. PyPIから
      2. ソースから
      3. Dockerの使用
    2. 使用法
      1. コマンドライン
      2. 特定のツールのみを有効にする
      3. Dockerを使用
    3. Claude Desktopとの統合
      1. PayPalアクセストークンの取得
        1. 発達
          1. 開発環境のセットアップ
          2. テストの実行
          3. パッケージの構築
        2. ライセンス
          1. 謝辞

            Related MCP Servers

            • -
              security
              F
              license
              -
              quality
              A server implementing the Model Context Protocol to make and query payments through Worldpay APIs, enabling payment processing, payment queries, and checkout form generation.
              Last updated -
            • -
              security
              A
              license
              -
              quality
              A Model Context Protocol server that provides comprehensive integration with PayPal's APIs, enabling seamless interaction with payment processing, invoicing, subscription management, and business operations through a standardized interface.
              Last updated -
              6
              Apache 2.0
            • -
              security
              A
              license
              -
              quality
              A server that provides integration with PayPal's APIs, enabling seamless interaction with payment processing, invoicing, subscription management, and business operations through a standardized interface.
              Last updated -
              MIT License
            • PayPalofficial

              -
              security
              A
              license
              -
              quality
              The PayPal Model Context Protocol server allows you to integrate with PayPal APIs through function calling. This protocol supports various tools to interact with different PayPal services.
              Last updated -
              200
              143
              Apache 2.0
              • Linux
              • Apple

            View all related MCP servers

            MCP directory API

            We provide all the information about MCP servers via our MCP API.

            curl -X GET 'https://glama.ai/api/mcp/v1/servers/akramIOT/paypal_mcp_server'

            If you have feedback or need assistance with the MCP directory API, please join our Discord server