PayPal MCP Defunct MCP Server

A Model Context Protocol (MCP) server for PayPal API integration

Local serverstdio

What is the PayPal MCP Defunct MCP server?

Most payments and commerce work still happens through a UI a human drives. PayPal MCP Defunct MCP server moves it into the conversation instead. A Model Context Protocol (MCP) server for PayPal API integration.

The short version

A Model Context Protocol (MCP) server that provides integration with PayPal's APIs. This server enables seamless interaction with PayPal's payment processing, invoicing, subscription management, and business operations through a standardized interface.

  • Payment Processing — Create and capture payments, orders, and payment tokens
  • Subscription Management — Create and manage recurring subscriptions
  • Business Operations — Create products, invoices, and process payouts
  • User Management — Retrieve user information and create web profiles
  • Secure Authentication — Automatic token management with refresh handling
  • Input Validation — Comprehensive validation using Zod schemas

The tools it exposes

The server publishes 11 tools. What each one is for:

  • create_payment_token — Create a payment token for future use
  • create_order — Create a new order in PayPal
  • capture_order — Capture payment for an authorized order
  • create_payment — Create a direct payment
  • create_subscription — Create a subscription for recurring billing
  • create_product — Create a new product in the catalog
  • create_invoice — Generate a new invoice
  • create_payout — Process a batch payout
  • get_userinfo — Retrieve user information
  • create_web_profile — Create a web experience profile
  • get_web_profiles — Get list of web experience profiles

What it needs from you

Configuration is passed through the environment: PAYPAL_CLIENT_ID, PAYPAL_CLIENT_SECRET, PAYPAL_ENVIRONMENT. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Getting it running

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

How it compares

Plenty of payments and commerce servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. PayPal MCP Defunct's toolset — create_payment_token, create_order, capture_order and 8 more — is a fair guide to whether it matches your workflow. It is maintained by arbuthnot-eth; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 11 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch PayPal MCP Defunct.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
create_payment_tokenCreate a payment token for future use
create_orderCreate a new order in PayPal
capture_orderCapture payment for an authorized order
create_paymentCreate a direct payment
create_subscriptionCreate a subscription for recurring billing
create_productCreate a new product in the catalog
create_invoiceGenerate a new invoice
create_payoutProcess a batch payout
get_userinfoRetrieve user information
create_web_profileCreate a web experience profile
get_web_profilesGet list of web experience profiles

How to install the PayPal MCP Defunct MCP server

{
  "mcpServers": {
    "paypal": {
      "command": "node",
      "args": ["path/to/paypal-mcp/build/index.js"],
      "env": {
        "PAYPAL_CLIENT_ID": "your_client_id",
        "PAYPAL_CLIENT_SECRET": "your_client_secret",
        "PAYPAL_ENVIRONMENT": "sandbox"
      },
      "disabled": false,
      "autoApprove": []
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
PAYPAL_CLIENT_IDConfiguration value read at startup.Optional
PAYPAL_CLIENT_SECRETCredential the server authenticates with.Yes
PAYPAL_ENVIRONMENTConfiguration value read at startup.Optional

Example prompts to try

  • Use PayPal MCP Defunct to create payment token.
  • Use PayPal MCP Defunct to create order.
  • Use PayPal MCP Defunct to capture order.

Frequently asked questions

It connects PayPal MCP Defunct to MCP-compatible AI assistants such as Claude and Cursor, exposing 11 tools (create_payment_token, create_order, capture_order, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with PayPal MCP Defunct directly.