# io.github.codespar/mcp-chargebee (npm · @codespar/mcp-chargebee)

MCP server for Chargebee — global subscription billing, recurring revenue orchestration

- Trust score: 68/100 (medium)
- Change this week: +23
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-06

## Components

- npm · `@codespar/mcp-chargebee`: 68/100 (this document), [markdown](https://verifymcp.io/servers/codespar-mcp-chargebee/codespar-mcp-chargebee.md), [page](https://verifymcp.io/servers/codespar-mcp-chargebee/codespar-mcp-chargebee)

## Channel facts

- Registry: `npm`
- Package: `@codespar/mcp-chargebee`
- Version: `0.1.2`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-06.

- **Supply Chain Security**: 86/100
  - No malware found by supply-chain analysis.
  - Known CVEs were checked across the 94 of 98 dependencies we could resolve, so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Dependency health was assessed across the 94 of 98 dependencies we could resolve, so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 44 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 70/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 1107 tokens (~73/item across 15 items; 15 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 37/100
  - Stability observed for 11 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 87/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 61% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add codespar-mcp-chargebee -- npx -y @codespar/mcp-chargebee
```

### Codex

```bash
codex mcp add codespar-mcp-chargebee -- npx -y @codespar/mcp-chargebee
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "codespar-mcp-chargebee": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@codespar/mcp-chargebee"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add codespar-mcp-chargebee --command npx --arg -y --arg @codespar/mcp-chargebee
```

### Hermes

```yaml
mcp_servers:
  codespar-mcp-chargebee:
    command: "npx"
    args: ["-y", "@codespar/mcp-chargebee"]
```

### Other

```json
{
  "mcpServers": {
    "codespar-mcp-chargebee": {
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-chargebee"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-06 (score 68, +1)

No change was recorded against any check on this day. Stability & Change Management went from 33 to 37. That category is still filling its 30-day observation window: 10 days of observed history at the previous scan, 11 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-05 (score 67, +1)

- [security improvement] CVE-2026-69207 no longer affects this package
- [security improvement] Known CVEs: fail → partial

### 2026-08-04 (score 66, +3)

- [security regression] CVE-2026-69207 affects this package: medium
- [security regression] Known CVEs: partial → fail
- [functional improvement] Stability: unverified → 0.30

### 2026-08-02 (score 63, +43)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] Schema quality: unverified → good
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Tool coverage: unverified → 100
- [functional] Licence: MIT

### 2026-08-01 (score 20, −7)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-31 (score 27, −18)

- [security regression] Malware scan: pass → unverified

### 2026-07-27 (score 45)

First indexed and scored.

## MCP tools (15)

### `create_subscription` (~162 tokens)

Create a new subscription in Chargebee. Provide either a nested `customer` object (with email/first_name/last_name) for a new customer, or pass an existing `customer_id` via nested customer or top-level field.

Input parameters:

- `addons` (array): Addon objects: [{ id, quantity }]
- `billing_cycles` (number): Number of billing cycles before subscription ends
- `coupon_ids` (array): Coupon IDs to apply
- `customer` (object): New customer object (email, first_name, last_name, company, ...) — omit if using customer_id
- `customer_id` (string): Existing Chargebee customer ID
- `plan_id` (string, required): Plan identifier (required)
- `plan_quantity` (number): Quantity of the plan

### `retrieve_subscription` (~23 tokens)

Retrieve a subscription by ID

Input parameters:

- `id` (string, required): Subscription ID

### `update_subscription` (~84 tokens)

Update a subscription. Accepts any Chargebee subscription fields (plan_id, plan_quantity, coupon_ids, addons, billing_cycles, etc.)

Input parameters:

- `addons` (array)
- `billing_cycles` (number)
- `coupon_ids` (array)
- `id` (string, required): Subscription ID
- `plan_id` (string)
- `plan_quantity` (number)

### `cancel_subscription` (~58 tokens)

Cancel a subscription. By default cancels immediately; set end_of_term=true to cancel at period end.

Input parameters:

- `end_of_term` (boolean): If true, cancels at end of current billing term
- `id` (string, required): Subscription ID

### `reactivate_subscription` (~26 tokens)

Reactivate a cancelled or paused subscription

Input parameters:

- `id` (string, required): Subscription ID

### `list_subscriptions` (~101 tokens)

List subscriptions. Pass filters as a free-form object using Chargebee's field[operator]=value format, e.g. { "status[is]": "active", "customer_id[is]": "cust_123" }.

Input parameters:

- `filters` (object): Chargebee filter params in field[operator]=value format
- `limit` (number): Page size (max 100)
- `offset` (string): Pagination offset token from previous response

### `create_customer` (~99 tokens)

Create a customer in Chargebee. At least one of email, first_name, or last_name is required.

Input parameters:

- `billing_address` (object): Billing address object
- `company` (string)
- `email` (string)
- `first_name` (string)
- `last_name` (string)
- `locale` (string): Customer locale (e.g. 'en-US', 'pt-BR')
- `phone` (string)

### `retrieve_customer` (~23 tokens)

Retrieve a customer by ID

Input parameters:

- `id` (string, required): Customer ID

### `update_customer` (~64 tokens)

Update a customer. Accepts any customer fields.

Input parameters:

- `company` (string)
- `email` (string)
- `first_name` (string)
- `id` (string, required): Customer ID
- `last_name` (string)
- `phone` (string)

### `list_customers` (~65 tokens)

List customers. Pass filters in Chargebee's field[operator]=value format.

Input parameters:

- `filters` (object): Filter params, e.g. { "email[is]": "foo@bar.com" }
- `limit` (number)
- `offset` (string)

### `retrieve_invoice` (~23 tokens)

Retrieve an invoice by ID

Input parameters:

- `id` (string, required): Invoice ID

### `list_invoices` (~107 tokens)

List invoices with optional filters

Input parameters:

- `customer_id` (string): Convenience filter: maps to customer_id[is]
- `filters` (object): Additional raw Chargebee filter params
- `limit` (number)
- `offset` (string)
- `status` (string): Convenience filter: maps to status[is] (paid, posted, payment_due, not_paid, voided, pending)
- `subscription_id` (string): Convenience filter: maps to subscription_id[is]

### `create_payment_source_using_token` (~80 tokens)

Attach a payment source to a customer using a gateway token (e.g. from Chargebee JS / Stripe.js / Adyen tokenization)

Input parameters:

- `customer_id` (string, required): Chargebee customer ID
- `gateway_account_id` (string, required): Chargebee gateway account ID
- `token_id` (string, required): Tokenized payment identifier from the gateway

### `delete_payment_source` (~24 tokens)

Delete a payment source

Input parameters:

- `id` (string, required): Payment source ID

### `list_events` (~101 tokens)

List webhook events. Useful for auditing or backfilling missed webhooks.

Input parameters:

- `event_type` (string): Convenience filter: maps to event_type[is]
- `filters` (object): Additional raw Chargebee filter params
- `limit` (number)
- `occurred_after` (number): Unix timestamp — maps to occurred_at[after]
- `occurred_before` (number): Unix timestamp — maps to occurred_at[before]
- `offset` (string)

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/codespar-mcp-chargebee/codespar-mcp-chargebee#diagnostics

## Score history

- 2026-08-06: 68
- 2026-08-05: 67
- 2026-08-04: 66
- 2026-08-03: 63
- 2026-08-02: 63
- 2026-08-01: 20
- 2026-07-31: 27
- 2026-07-30: 45
- 2026-07-28: 45
- 2026-07-27: 45

## Links

- npm package: https://www.npmjs.com/package/@codespar/mcp-chargebee
- Socket report: https://socket.dev/npm/package/@codespar/mcp-chargebee
- Repository: https://github.com/codespar/mcp-dev-latam
- Changelog RSS feed: https://verifymcp.io/servers/codespar-mcp-chargebee/codespar-mcp-chargebee.xml
- Changelog JSON feed: https://verifymcp.io/servers/codespar-mcp-chargebee/codespar-mcp-chargebee.json
- HTML version of this page: https://verifymcp.io/servers/codespar-mcp-chargebee/codespar-mcp-chargebee
