Skip to main content
Glama
chargebee

@chargebee/mcp

Official
by chargebee

Servidor de protocolo de contexto de modelo (MCP) de Chargebee

MCP Chargebee versión npm

El Protocolo de Contexto de Modelo (MCP) es un protocolo estandarizado diseñado para gestionar el contexto entre modelos de lenguaje grandes (LLM) y sistemas externos.

El servidor Chargebee MCP ofrece un conjunto robusto de herramientas para mejorar la eficiencia del desarrollador. Se integra con editores de código basados en IA como Cursor, Windsurf y Cline, así como con herramientas de uso general como Claude Desktop. Es compatible con cualquier cliente MCP.

Con este servidor MCP, puedes:

  • Obtenga respuestas inmediatas sobre los productos y servicios API de Chargebee.

  • Reciba fragmentos de código sensibles al contexto adaptados a sus necesidades de integración.

  • Acceda a la base de conocimientos de Chargebee, que incluye:

    • Documentación

    • Preguntas frecuentes

    • Notas de la versión

    • Y mucho más

Demostración de MCP

Prerrequisitos

  • Node.js LTS : el servidor Chargebee MCP requiere la versión Node.js LTS para funcionar correctamente.

Related MCP server: Codinfy MCP

Configuración

Para ejecutar el servidor Chargebee MCP usando Node.js npx , ejecute el siguiente comando:

npx -y @chargebee/mcp@latest

Herramientas disponibles

Herramienta

Descripción

chargebee_documentation_search

Busque en la documentación de Chargebee para obtener información detallada y guías de uso.

chargebee_code_planner

Genere esquemas de código estructurados y códigos de muestra para integrar las API y funciones de Chargebee.

Instalación

Cursor

Para agregar este servidor a Cursor IDE:

  1. Vaya a Cursor Settings > MCP .

  2. Haga clic en + Add new Global MCP Server .

  3. Agregue la siguiente configuración a su archivo global .cursor/mcp.json :

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

Consulta la documentación de Cursor para obtener más información. Nota: También puedes añadir esto a la configuración de Cursor específica de tu proyecto (compatible con Cursor 0.46 y versiones posteriores).

Windsurf

Para configurar MCP con Cascade:

  1. Abra Windsurf y vaya a Settings > Advanced Settings o use la Paleta de comandos > Open Windsurf Settings Page .

  2. Desplácese hasta la sección Cascada para agregar un nuevo servidor, ver servidores existentes o acceder al archivo de configuración JSON sin procesar en mcp_config.json .

  3. Haga clic en “Agregar servidor personalizado +” para incluir el servidor Chargebee MCP directamente en mcp_config.json :

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

Consulte la documentación de Windsurf para obtener más información.

Cline

Agregue manualmente el siguiente JSON a su archivo cline_mcp_settings.json a través de la configuración del servidor Cline MCP:

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

Código Roo

Acceda a la configuración de MCP seleccionando Edit MCP Settings en la configuración de Roo Code o usando el Roo Code: Open MCP Config en la paleta de comandos de VS Code:

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

Claude

Agregue la siguiente configuración a su archivo claude_desktop_config.json . Consulte la documentación de Claude Desktop para obtener más información:

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

CLI

También puede ejecutar el servidor como una CLI ejecutando el siguiente comando:

npx -y @chargebee/mcp@latest

Contribución

Para contribuir a este proyecto, consulte la guía de contribución .

Licencia

Instituto Tecnológico de Massachusetts (MIT)

Available Tools

2 tools
chargebee_code_plannerA

Use this tool for any Chargebee integration questions or implementation needs.

Always use this tool to get the accurate integration code guide for Chargebee. This is the main tool developers need when asking about implementing Chargebee functionality (like "how to update billing address", "how to create subscription", "how to handle webhooks", etc.).

This tool will take in parameters about integrating with Chargebee in their application and generates an integration workflow along with the code snippets.

It takes the following arguments:

  • goal (string): What is the user's goal?

  • language (enum): Programming language the code to be generated in. Check the user's application language.

ParametersJSON Schema
NameRequiredDescriptionDefault
goalYesWhat is the user's goal?
languageNoProgramming language the code to be generated in. Check the user's application language.

TDQS

A3.5/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must disclose behavioral traits. It only describes the tool as generating code but does not clarify that it is a read-only operation with no side effects or data mutations. Such information is essential for safe invocation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description contains redundant phrasing (e.g., 'Use this tool' and 'Always use this tool') and could be more streamlined. However, it is not excessively long and includes necessary details.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers the tool's inputs and high-level output (workflow and code snippets) but lacks details on the output structure, error handling, or limitations. With no output schema, more specifics would improve completeness.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, and the descriptions in the schema are adequate. The tool description reiterates the parameter meanings without adding new context or examples, meeting the baseline for high coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: generating integration workflows and code snippets for Chargebee. It explicitly differentiates from the sibling tool 'chargebee_documentation_search' by positioning itself as the main tool for implementation questions.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description advises to use this tool for Chargebee integration needs and to check the user's language. It implies a context for use but does not explicitly exclude scenarios or mention alternatives beyond the sibling.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 2 tool updates
    • First observedchargebee_code_planner
    • First observedchargebee_documentation_search

TDQS

A4.1/5.0
Disambiguation5/5

The two tools have explicitly distinct purposes: one for implementation guidance and code generation, the other for general documentation queries. Descriptions clearly separate their use cases, eliminating ambiguity.

Naming Consistency5/5

Both tools follow a consistent 'chargebee_<descriptive_noun>' pattern, making it easy to infer their roles. The naming is uniform and predictable.

Tool Count4/5

With only two tools, the server is very focused, but that matches its specific purpose of handling integration assistance and documentation search. While minimal, the count is reasonable for the intended scope.

Completeness5/5

The tool set covers both implementation needs (code planner) and conceptual understanding (documentation search), leaving no obvious gaps for its stated goal of answering Chargebee integration questions.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    C
    maintenance
    MCP server that connects AI agents to Codinfy platform APIs for validating licenses, creating checkouts, listing products, tracking analytics, managing OAuth identity, and handling ad placements.
    17
    MIT
  • F
    license
    A
    quality
    D
    maintenance
    MCP server for RevenueCat that lets AI agents query subscriber data, check entitlements, fetch offerings, and manage subscriptions via natural language.
    6
    -
  • A
    license
    B
    quality
    B
    maintenance
    MCP server that connects AI assistants to the Conexa business management system, enabling CRUD operations on sales, customers, plans, contracts, charges, and more via 83 tools.
    83
    121
    1
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/chargebee/agentkit'

If you have feedback or need assistance with the MCP directory API, please join our Discord server