Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, get in touch and we’ll put it right.

io.github.codespar/mcp-chargebee

NPM · @CODESPAR/MCP-CHARGEBEE · SCANNED AUG 6

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

+23 this week 68 Trust /100
Trust breakdown (6 categories)

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. How we score →

Supply Chain Security86
  • No malware found by supply-chain analysis.Pass
  • Known CVEs were checked across the 94 of 98 dependencies we could resolve, so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Dependency health was assessed across the 94 of 98 dependencies we could resolve, so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
Schema Quality & AI Usability70
  • AI-judged instruction clarity (good).Pass
  • Tool/resource definitions use about 1107 tokens (~73/item across 15 items; 15 tools + 0 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management37
  • Stability observed for 11 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage87
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 61% of tool parameters carry a description.Partial
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · @codespar/mcp-chargebee

# add to Claude Code
claude mcp add codespar-mcp-chargebee -- npx -y @codespar/mcp-chargebee
# add to Codex CLI
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
    }
  }
}
# add to OpenClaw
openclaw mcp add codespar-mcp-chargebee --command npx --arg -y --arg @codespar/mcp-chargebee
# ~/.hermes/config.yaml
mcp_servers:
  codespar-mcp-chargebee:
    command: "npx"
    args: ["-y", "@codespar/mcp-chargebee"]
// mcp.json
{
  "mcpServers": {
    "codespar-mcp-chargebee": {
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-chargebee"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 6 Aug 26 +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.

  • 5 Aug 26 +1
    • CVE-2026-69207 no longer affects this package security
    • Known CVEs: fail → partial security
  • 4 Aug 26 +3
    • CVE-2026-69207 affects this package: medium security
    • Known CVEs: partial → fail security
    • Stability: unverified → 0.30 functional
  • 2 Aug 26 +43
    • Provenance: unverified → fail security
    • Install scripts: unverified → pass security
    • Known CVEs: unverified → partial security
    • Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
    • Schema quality: unverified → good functional
    • Maintenance: unverified → pass functional
    • License: unverified → pass functional
    • Dependency health: unverified → partial functional
    • MCP protocol: unverified → pass functional
    • Tool coverage: unverified → 100 functional
    • Licence: MIT functional
  • 1 Aug 26 −7
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 31 Jul 26 −18
    • Malware scan: pass → unverified security
  • 27 Jul 26 45

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 6 Aug 2026 · Analysed npm/@codespar/[email protected]

Provenance No attestation

The registry publishes no build provenance for this version, so there is nothing to verify.

Result No attestation
Ecosystem npm
Dependencies 94 packages
Packages resolved 94
Deprecated 94
Stale 29
Tree resolution Partial

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 15 exposed · ~1,040 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
cancel_subscription ~58

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

NameTypeReqDescription
end_of_termbooleanIf true, cancels at end of current billing term
idstringyesSubscription ID

No output schema declared.

No examples provided.

create_customer ~99

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

NameTypeReqDescription
billing_addressobjectBilling address object
companystring
emailstring
first_namestring
last_namestring
localestringCustomer locale (e.g. 'en-US', 'pt-BR')
phonestring

No output schema declared.

No examples provided.

create_payment_source_using_token ~80

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

NameTypeReqDescription
customer_idstringyesChargebee customer ID
gateway_account_idstringyesChargebee gateway account ID
token_idstringyesTokenized payment identifier from the gateway

No output schema declared.

No examples provided.

create_subscription ~162

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.

NameTypeReqDescription
addonsarrayAddon objects: [{ id, quantity }]
billing_cyclesnumberNumber of billing cycles before subscription ends
coupon_idsarrayCoupon IDs to apply
customerobjectNew customer object (email, first_name, last_name, company, ...) — omit if using customer_id
customer_idstringExisting Chargebee customer ID
plan_idstringyesPlan identifier (required)
plan_quantitynumberQuantity of the plan

No output schema declared.

No examples provided.

delete_payment_source ~24

Delete a payment source

NameTypeReqDescription
idstringyesPayment source ID

No output schema declared.

No examples provided.

list_customers ~65

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

NameTypeReqDescription
filtersobjectFilter params, e.g. { "email[is]": "[email protected]" }
limitnumber
offsetstring

No output schema declared.

No examples provided.

list_events ~101

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

NameTypeReqDescription
event_typestringConvenience filter: maps to event_type[is]
filtersobjectAdditional raw Chargebee filter params
limitnumber
occurred_afternumberUnix timestamp — maps to occurred_at[after]
occurred_beforenumberUnix timestamp — maps to occurred_at[before]
offsetstring

No output schema declared.

No examples provided.

list_invoices ~107

List invoices with optional filters

NameTypeReqDescription
customer_idstringConvenience filter: maps to customer_id[is]
filtersobjectAdditional raw Chargebee filter params
limitnumber
offsetstring
statusstringConvenience filter: maps to status[is] (paid, posted, payment_due, not_paid, voided, pending)
subscription_idstringConvenience filter: maps to subscription_id[is]

No output schema declared.

No examples provided.

list_subscriptions ~101

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" }.

NameTypeReqDescription
filtersobjectChargebee filter params in field[operator]=value format
limitnumberPage size (max 100)
offsetstringPagination offset token from previous response

No output schema declared.

No examples provided.

reactivate_subscription ~26

Reactivate a cancelled or paused subscription

NameTypeReqDescription
idstringyesSubscription ID

No output schema declared.

No examples provided.

retrieve_customer ~23

Retrieve a customer by ID

NameTypeReqDescription
idstringyesCustomer ID

No output schema declared.

No examples provided.

retrieve_invoice ~23

Retrieve an invoice by ID

NameTypeReqDescription
idstringyesInvoice ID

No output schema declared.

No examples provided.

retrieve_subscription ~23

Retrieve a subscription by ID

NameTypeReqDescription
idstringyesSubscription ID

No output schema declared.

No examples provided.

update_customer ~64

Update a customer. Accepts any customer fields.

NameTypeReqDescription
companystring
emailstring
first_namestring
idstringyesCustomer ID
last_namestring
phonestring

No output schema declared.

No examples provided.

update_subscription ~84

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

NameTypeReqDescription
addonsarray
billing_cyclesnumber
coupon_idsarray
idstringyesSubscription ID
plan_idstring
plan_quantitynumber

No output schema declared.

No examples provided.