Global subscription-billing orchestration used by LatAm SaaS (Platzi, Truora). Stripe-style subscription logic on top of local gateways. Zero overlap with Vindi/Iugu โ this is the global-SaaS pattern.
$ npm install @codespar/mcp-chargebeeAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"chargebee": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-chargebee"
],
"env": {
"CHARGEBEE_SITE": "<your_chargebee_site>",
"CHARGEBEE_API_KEY": "<your_chargebee_api_key>"
}
}
}
}After restart, your agent can call any of the 15 tools below โ try create_subscription first.
Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
CHARGEBEE_SITEChargebee site subdomain (e.g. 'acme' for acme.chargebee.com, 'acme-test' for test site)
CHARGEBEE_API_KEYChargebee API key (full-access or restricted) from Settings > API Keys
Each tool is independent โ your agent loads only what it needs to reduce context and response time.
create_subscriptionretrieve_subscriptionupdate_subscriptioncancel_subscriptionreactivate_subscriptionlist_subscriptionscreate_customerretrieve_customerMCP is a protocol โ any framework that speaks it can mount this server.