Paddle
live ReferenceMCP server for Paddle
Tools
paddle_list_customers Return bounded Paddle customer records with IDs, email addresses, names, status, locale, and creation or update timestamps. Answers which billing customers match an email or changed recently.
No parameters required.
Try it
paddle_list_subscriptions Return bounded Paddle subscriptions with customer, status, recurring items, billing cycle, next billing date, and scheduled changes. Answers which accounts are active, trialing, paused, past due, or c
No parameters required.
Try it
paddle_list_transactions Return bounded Paddle transactions with customer, subscription, origin, collection mode, currency, totals, payment, and processing status. Answers which payments completed, remain past due, or were ca
No parameters required.
Try it
paddle_list_adjustments Return bounded Paddle adjustments with refund, credit, or chargeback action, status, reason, transaction, customer, currency, and totals. Answers which revenue was refunded, credited, disputed, or rev
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/paddle/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/paddle/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"paddle_list_customers","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("paddle_list_customers", {}); // Or ask in plain English:
const answer = await px.ask("mcp server for paddle");