Recurly

live Reference

Return bounded Recurly customer accounts with codes, contact details, state, tax status, balances, and timestamps.

4 tools
0ms auth
free tier 50 calls/day

Tools

recurly_list_accounts

Return bounded Recurly customer accounts with codes, contact details, state, tax status, balances, and timestamps. Answers which billing accounts are active, inactive, or recently created.

No parameters required.

Try it
recurly_list_subscriptions

Return bounded Recurly subscriptions with account, plan, state, pricing, trial, renewal, cancellation, and expiration dates. Answers which customers are active, trialing, paused, canceled, or expiring

No parameters required.

Try it
recurly_list_invoices

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.

No parameters required.

Try it
recurly_list_transactions

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

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/recurly/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/recurly/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"recurly_list_accounts","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("recurly_list_accounts", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("return bounded recurly customer accounts with codes, contact details, state, tax status, balances, and timestamps");