paddle_list_subscriptions

Pack: paddle · Endpoint: https://gateway.pipeworx.io/paddle/mcp

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 canceled.

Parameters

NameTypeRequiredDescription
customer_idstringnoPaddle customer ID beginning ctm_
statusstringno

Example call

Arguments

{
  "_apiKey": "pdl_sdbx_apikey_your-key",
  "_environment": "sandbox",
  "status": "past_due",
  "per_page": 20
}

curl

curl -X POST https://gateway.pipeworx.io/paddle/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"paddle_list_subscriptions","arguments":{"_apiKey":"pdl_sdbx_apikey_your-key","_environment":"sandbox","status":"past_due","per_page":20}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('paddle_list_subscriptions', {
  "_apiKey": "pdl_sdbx_apikey_your-key",
  "_environment": "sandbox",
  "status": "past_due",
  "per_page": 20
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "paddle": {
      "url": "https://gateway.pipeworx.io/paddle/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 8, 2026