Paypal

live Finance

PayPal MCP Pack — read-only access to PayPal transactions, orders, invoices, and disputes.

5 tools
0ms auth
free tier 50 calls/day

Tools

paypal_list_transactions

List PayPal transactions within a date range. Returns transaction details including amount, status, and payer info.

No parameters required.

Try it
paypal_get_order

Get details of a specific PayPal order by its ID.

No parameters required.

Try it
paypal_list_invoices

List invoices from your PayPal account. Returns invoice numbers, amounts, and statuses.

No parameters required.

Try it
paypal_get_invoice

Get details of a specific PayPal invoice by its ID.

No parameters required.

Try it
paypal_list_disputes

List disputes (chargebacks and claims) from your PayPal account.

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/paypal/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/paypal/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"paypal_list_transactions","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("paypal_list_transactions", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("paypal mcp pack — read-only access to paypal transactions, orders, invoices, and disputes");