chargebee_get_customer
Pack: chargebee · Endpoint: https://gateway.pipeworx.io/chargebee/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/chargebee_get_customer for the schema, then POST the same URL with its arguments for the data.
Get complete customer profile by ID. Returns name, email, address, payment methods, subscription count, and account status.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
_apiKey | string | yes | Chargebee API key |
_site | string | yes | Chargebee site name |
customer_id | string | yes | Customer 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
| Field | Type | Description |
|---|---|---|
customer | object | Customer 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.