chargebee_list_customers

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

List all customers with pagination. Returns customer IDs, names, emails, billing addresses, and creation dates.

Parameters

NameTypeRequiredDescription
_apiKeystringyesChargebee API key
_sitestringyesChargebee site name
limitnumbernoNumber of results to return (default 10, max 100)
offsetstringnoPagination offset from a previous response

Example call

Arguments

{
  "_apiKey": "your-chargebee-api-key",
  "_site": "mycompany",
  "limit": 50
}

curl

curl -X POST https://gateway.pipeworx.io/chargebee/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"chargebee_list_customers","arguments":{"_apiKey":"your-chargebee-api-key","_site":"mycompany","limit":50}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('chargebee_list_customers', {
  "_apiKey": "your-chargebee-api-key",
  "_site": "mycompany",
  "limit": 50
});

Response shape

Always returns: list

FieldTypeDescription
listarrayArray of customer objects
next_offsetstringPagination offset for next page of results
Full JSON Schema
{
  "type": "object",
  "properties": {
    "list": {
      "type": "array",
      "description": "Array of customer objects",
      "items": {
        "type": "object",
        "properties": {
          "customer": {
            "type": "object",
            "description": "Customer details"
          }
        }
      }
    },
    "next_offset": {
      "type": "string",
      "description": "Pagination offset for next page of results"
    }
  },
  "required": [
    "list"
  ]
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026