Recurly
liveReferenceReturn bounded Recurly customer accounts with codes, contact details, state, tax status, balances, and timestamps.
Tools
recurly_list_accountsReturn 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_subscriptionsReturn 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_invoicesReturn 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_transactionsReturn 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.
curl -X POST https://gateway.pipeworx.io/recurly/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'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.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("recurly_list_accounts", {});// 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");