Paypal
live FinancePayPal MCP Pack — read-only access to PayPal transactions, orders, invoices, and disputes.
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.
curl -X POST https://gateway.pipeworx.io/paypal/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' 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.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("paypal_list_transactions", {}); // Or ask in plain English:
const answer = await px.ask("paypal mcp pack — read-only access to paypal transactions, orders, invoices, and disputes");