Chargebee MCP Server — Hosted Api Connectors Integration
MCP Server language Hosted language PublicManage subscriptions, billing cycles, invoices, and customer plans — bring AI to your recurring revenue operations.
Use with AI AssistantsMCP
Connect Claude, Cursor, or any MCP-compatible client — then call tools directly
① Add This MCP Server
Paste into your AI client config — then all its tools are available instantly.
{
"mcpServers": {
"chargebee": {
"url": "https://mcp.aerostack.dev/s/aerostack/mcp-chargebee",
"headers": {
"Authorization": "Bearer YOUR_AEROSTACK_TOKEN"
}
}
}
}Replace YOUR_AEROSTACK_TOKEN with your API token from the dashboard.
② Call a Tool
Ask your AI assistant to call a specific tool, or send raw JSON-RPC:
Natural Language Prompt
“Use the _ping tool to verify chargebee credentials by calling a lightweight read endpoint. used internally by aerostack to validate credentials”
Using a Workspace?
Add this MCP to your Workspace — your team shares one token, secrets are stored securely, and every AI agent in the workspace can call it without per-user setup.
description Overview
mcp-chargebee — Chargebee MCP Server
Manage subscriptions, customers, invoices, and plans from your AI agents.
Chargebee is the subscription billing platform that handles recurring revenue for SaaS and e-commerce businesses. This MCP server gives your AI agents direct access to your Chargebee instance — letting them look up customers, manage subscription lifecycles, pull invoice history, and list available plans without anyone logging into the Chargebee dashboard.
Live endpoint: https://mcp.aerostack.dev/s/aerostack/mcp-chargebee
What You Can Do
- Look up customer records and subscription status instantly — useful for support agents handling billing questions
- Cancel or reactivate subscriptions programmatically in response to customer requests or churn signals
- Pull invoice history for a customer to answer billing disputes or generate reports
- Create new subscriptions and customers as part of onboarding automation workflows
Available Tools
| Tool | Description |
|---|---|
list_customers |
List customers with optional email filter |
get_customer |
Get full details for a customer by ID |
create_customer |
Create a new customer |
list_subscriptions |
List subscriptions filtered by customer or status |
get_subscription |
Get full details for a subscription by ID |
create_subscription |
Create a new subscription for an existing customer |
cancel_subscription |
Cancel a subscription (end of term or immediately) |
reactivate_subscription |
Reactivate a cancelled subscription |
list_invoices |
List invoices filtered by customer or status |
list_plans |
List plans (active or archived) |
Configuration
| Variable | Required | Description | How to Get |
|---|---|---|---|
CHARGEBEE_SITE |
Yes | Your Chargebee site subdomain (e.g. my-company) |
Found in your Chargebee URL: {site}.chargebee.com |
CHARGEBEE_API_KEY |
Yes | API key used for authentication | app.chargebee.com → Settings → Configure Chargebee → API Keys → Create or copy a Full Access key |
Quick Start
Add to Aerostack Workspace
- Go to aerostack.dev → Your Project → MCPs
- Search for "Chargebee" and click Add to Workspace
- Add
CHARGEBEE_SITEandCHARGEBEE_API_KEYunder Project → Secrets
Once added, every AI agent in your workspace can call Chargebee tools automatically — no per-user setup needed.
Example Prompts
"Look up the subscription for customer@example.com and tell me their current plan and next billing date"
"Cancel the subscription sub_abc123 at the end of the current term"
"Show me all overdue invoices for the last 90 days"
Direct API Call
curl -X POST https://mcp.aerostack.dev/s/aerostack/mcp-chargebee \
-H 'Content-Type: application/json' \
-H 'X-Mcp-Secret-CHARGEBEE-SITE: your-site' \
-H 'X-Mcp-Secret-CHARGEBEE-API-KEY: your-api-key' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_plans","arguments":{}}}'
License
MIT
terminal Tools (11)
Available tools on this MCP server. Each tool can be called directly from any AI agent.
_ping #1 Verify Chargebee credentials by calling a lightweight read endpoint. Used internally by Aerostack to validate credentials.
list_customers #2 List customers in the Chargebee account with optional email filter
get_customer #3 Get full details for a specific Chargebee customer
create_customer #4 Create a new customer in Chargebee
list_subscriptions #5 List subscriptions with optional filters by customer or status
get_subscription #6 Get full details for a specific subscription
create_subscription #7 Create a new subscription for an existing customer
cancel_subscription #8 Cancel a subscription, optionally at end of billing period
reactivate_subscription #9 Reactivate a cancelled subscription
list_invoices #10 List invoices with optional filters by customer or status
list_plans #11 List plans available in the Chargebee account
Details
language Live Endpoint
https://mcp.aerostack.dev/s/aerostack/mcp-chargebee
Sub-50ms globally · Zero cold start
Publisher
Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.
More in API Connectors
Browse API Connectors MCPs →Aerostack Registry
by @aerostack
Discover and invoke any MCP, Function, or Skill published to the Aerostack marketplace — the universal AI capability hub.
Algolia
by @aerostack
Search indexes, manage records, browse data, and configure ranking in Algolia — AI-native instant search access.
Arangodb
by @aerostack
Query documents, run AQL, traverse graphs, and manage collections in your ArangoDB database — AI-native multi-model database access.
Ayrshare
by @aerostack
Post, schedule, and analyze social media across 13 platforms — Facebook, Instagram, X, LinkedIn, TikTok, Bluesky, Threads, Reddit, Pinterest, YouTube, Telegram, Snapchat, Google Business.
Basecamp
by @aerostack
Manage projects, to-dos, messages, schedules, and campfire chats in Basecamp — AI-native project management.
Bigquery
by @aerostack
Run SQL queries, list datasets and tables, inspect schemas, and export results from Google BigQuery — AI-native data warehouse access.
Frequently asked questions
What is the Chargebee MCP server and what can it do? +
The Chargebee MCP server is hosted on Aerostack and exposes these tools to your AI agent: `_ping`, `list_customers`, `get_customer`, `create_customer`, `list_subscriptions`. You get one hosted URL — no self-hosting — that works from Claude, Cursor, ChatGPT, Gemini, VS Code, or any MCP-compatible client, and you can share it with your team or combine it with other MCP servers in a workspace.
Is the Chargebee MCP server hosted, or do I have to run it myself? +
It's hosted on Aerostack's edge infrastructure — you don't deploy or maintain anything. Add it to a workspace and you get one authenticated URL, with secrets encrypted, that any AI agent or editor can connect to. Use it solo or share the same URL across your whole team.
Which AI agents and editors can use the Chargebee MCP server? +
Any MCP client: Claude and Claude Code, Cursor, ChatGPT, Gemini, Windsurf, Cline, VS Code, and custom agents. Because it's one hosted URL, the same Chargebee MCP server works everywhere — and you can compose it with other MCP servers, skills, and functions behind a single workspace URL.
How do I install the Chargebee MCP server in Claude Desktop? +
Add the following to your Claude Desktop config (`claude_desktop_config.json`): ```json { "mcpServers": { "@aerostack/mcp-chargebee": { "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-chargebee"] } } } ``` Then restart Claude Desktop and the tools will appear automatically.
How do I use the Chargebee MCP server in Cursor? +
In Cursor, open **Settings → MCP** and add: ```json { "name": "@aerostack/mcp-chargebee", "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-chargebee"] } ``` Save and reload Cursor. The MCP tools will be available in Agent mode.
Does Chargebee MCP require authentication? +
Yes. Chargebee requires authentication. Check the MCP's documentation for the required credentials.