Aerostack
electrical_services

Chargebee MCP Server — Hosted Api Connectors Integration

MCP Server language Hosted language Public

Manage subscriptions, billing cycles, invoices, and customer plans — bring AI to your recurring revenue operations.

aerostack @aerostack verified
v0.1.0 MIT Updated Jun 28, 2026
robot_2

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.

.claude/mcp.json
{
  "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:

+5 more

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.

add_circleAdd to Workspace

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.comSettingsConfigure ChargebeeAPI Keys → Create or copy a Full Access key

Quick Start

Add to Aerostack Workspace
  1. Go to aerostack.dev → Your Project → MCPs
  2. Search for "Chargebee" and click Add to Workspace
  3. Add CHARGEBEE_SITE and CHARGEBEE_API_KEY under 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.

terminal
_ping #1

Verify Chargebee credentials by calling a lightweight read endpoint. Used internally by Aerostack to validate credentials.

terminal
list_customers #2

List customers in the Chargebee account with optional email filter

terminal
get_customer #3

Get full details for a specific Chargebee customer

terminal
create_customer #4

Create a new customer in Chargebee

terminal
list_subscriptions #5

List subscriptions with optional filters by customer or status

terminal
get_subscription #6

Get full details for a specific subscription

terminal
create_subscription #7

Create a new subscription for an existing customer

terminal
cancel_subscription #8

Cancel a subscription, optionally at end of billing period

terminal
reactivate_subscription #9

Reactivate a cancelled subscription

terminal
list_invoices #10

List invoices with optional filters by customer or status

terminal
list_plans #11

List plans available in the Chargebee account

Details

upgrade Version 0.1.0
gavel License MIT
wifi Transport streamable-http
lock Access Public
category Category API Connectors
terminal Tools 11

language Live Endpoint

https://mcp.aerostack.dev/s/aerostack/mcp-chargebee

Sub-50ms globally · Zero cold start

Publisher

aerostack
@aerostack verified

Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.

Tags

Browse more servers

More in API Connectors

Browse API Connectors MCPs →

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.