Paddle

live Reference

MCP server for Paddle

4 tools
0ms auth
free tier 50 calls/day

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.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/paddle/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/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.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("paddle_list_customers", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("mcp server for paddle");