Skip to content
VS Code

mcp chargebee for VS Code

io.github.codespar/mcp-chargebee

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

client:VS Code transport:stdio runtime:npm

Install mcp chargebee in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "chargebee-site",
      "description": "CHARGEBEE_SITE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "chargebee-api-key",
      "description": "CHARGEBEE_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "mcp-chargebee": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-chargebee"
      ],
      "env": {
        "CHARGEBEE_SITE": "${input:chargebee-site}",
        "CHARGEBEE_API_KEY": "${input:chargebee-api-key}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

mcp chargebee in other clients