recurly_list_transactions

Pack: recurly · Connect: https://pipeworx.io/mcp (see Connect below for a single-pack URL)

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/recurly_list_transactions for the schema, then POST the same URL with its arguments for the data.

Return bounded Recurly payment transactions with account, invoice, type, status, amount, currency, gateway response, and timestamps. Answers which charges, refunds, and verifications succeeded or failed.

Parameters

NameTypeRequiredDescription
typestringno
successbooleanno

Example call

Arguments

{
  "_apiKey": "your-recurly-private-api-key",
  "type": "refund",
  "success": true,
  "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_transactions","arguments":{"_apiKey":"your-recurly-private-api-key","type":"refund","success":true,"limit":20}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('recurly_list_transactions', {
  "_apiKey": "your-recurly-private-api-key",
  "type": "refund",
  "success": true,
  "limit": 20
});

Connect

Add this to your MCP client config — every tool in the catalog, including this one — or use one-click install buttons:

{
  "mcpServers": {
    "pipeworx": {
      "url": "https://pipeworx.io/mcp"
    }
  }
}
Connect to just the recurly pack
{
  "mcpServers": {
    "recurly": {
      "url": "https://gateway.pipeworx.io/recurly/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 25, 2026