Skip to main content
Glama

PayPal MCP Server

Servidor MCP de PayPal no oficial

Servidor MCP de PayPal

Implementación en Python de un servidor de Protocolo de Contexto de Modelo (MCP) para integraciones de API de PayPal. Este servidor permite que los Modelos de Lenguaje Grandes (LLM) interactúen con las API de PayPal mediante llamadas a funciones.

Características

  • Implementación completa del Protocolo de Contexto de Modelo para las API de PayPal
  • Compatibilidad con todos los principales puntos finales de la API de PayPal:
    • Facturas : crear, listar, ver, enviar, recordar, cancelar, códigos QR
    • Órdenes : crear, obtener, capturar
    • Productos : crear, listar, ver, actualizar
    • Planes de suscripción : crear, listar, ver
    • Suscripciones : crear, ver, cancelar
    • Envíos : Crear, rastrear
    • Disputas : Listar, ver, aceptar
    • Transacciones : Listar y filtrar

Instalación

Desde PyPI

pip install paypal-mcp-server

De la fuente

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

Usando Docker

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

Uso

Línea de comandos

# 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

Habilitar solo herramientas específicas

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

Con Docker

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

Integración con Claude Desktop

Agregue lo siguiente a su ~/Claude/claude_desktop_config.json :

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

Cómo obtener un token de acceso de PayPal

Puede generar un token de acceso de PayPal utilizando su ID de cliente y su secreto de cliente:

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"

Desarrollo

Configurar el entorno de desarrollo

# 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

Ejecución de pruebas

pytest -xvs

Construyendo el paquete

python -m build

Licencia

Este proyecto está licenciado bajo la licencia MIT: consulte el archivo de LICENCIA para obtener más detalles.

Expresiones de gratitud

-
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.

Una implementación de Python que permite que los modelos de lenguaje grandes interactúen con las API de PayPal a través de llamadas a funciones y admitan características como facturas, pedidos, productos, suscripciones y transacciones.

  1. Características
    1. Instalación
      1. Desde PyPI
      2. De la fuente
      3. Usando Docker
    2. Uso
      1. Línea de comandos
      2. Habilitar solo herramientas específicas
      3. Con Docker
    3. Integración con Claude Desktop
      1. Cómo obtener un token de acceso de PayPal
        1. Desarrollo
          1. Configurar el entorno de desarrollo
          2. Ejecución de pruebas
          3. Construyendo el paquete
        2. Licencia
          1. Expresiones de gratitud

            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 -
              TypeScript
            • -
              security
              A
              license
              -
              quality
              Provides integration with PayPal's Account Updater service, enabling merchants to maintain fresh payment card information in their e-commerce systems through subscription management and webhook notifications.
              Last updated -
              Python
              MIT License
            • -
              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 -
              TypeScript
              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 -
              TypeScript
              MIT License

            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