chargebee_get_customer

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

Get complete customer profile by ID. Returns name, email, address, payment methods, subscription count, and account status.

Parameters

NameTypeRequiredDescription
_apiKeystringyesChargebee API key
_sitestringyesChargebee site name
customer_idstringyesCustomer ID

Example call

Arguments

{
  "_apiKey": "your-chargebee-api-key",
  "_site": "mycompany",
  "customer_id": "cust_00123456789"
}

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_get_customer","arguments":{"_apiKey":"your-chargebee-api-key","_site":"mycompany","customer_id":"cust_00123456789"}}}'

TypeScript (@pipeworx/sdk)

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

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

Response shape

Always returns: customer

FieldTypeDescription
customerobjectCustomer profile including name, email, address, payment methods, subscriptions
Full JSON Schema
{
  "type": "object",
  "properties": {
    "customer": {
      "type": "object",
      "description": "Customer profile including name, email, address, payment methods, subscriptions"
    }
  },
  "required": [
    "customer"
  ]
}

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