recurly_list_invoices

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

Return bounded Recurly invoices with account, state, currency, totals, balance, collection method, due date, and payment status. Answers which customer balances are paid, pending, past due, or failed.

Parameters

NameTypeRequiredDescription
statestringno

Example call

Arguments

{
  "_apiKey": "your-recurly-private-api-key",
  "state": "past_due",
  "limit": 20
}

curl

curl -X POST https://gateway.pipeworx.io/recurly/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"recurly_list_invoices","arguments":{"_apiKey":"your-recurly-private-api-key","state":"past_due","limit":20}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('recurly_list_invoices', {
  "_apiKey": "your-recurly-private-api-key",
  "state": "past_due",
  "limit": 20
});

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 12, 2026