Skip to content
VS Code

mcp for VS Code

com.billingserv/mcp

BillingServ MCP server for customers, invoices, orders, packages, licenses, and revenue reports.

client:VS Code transport:stdio runtime:npm

Install mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "billingserv-api-base-url",
      "description": "BILLINGSERV_API_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "billingserv-api-key",
      "description": "BILLINGSERV_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "billingserv-timeout-ms",
      "description": "BILLINGSERV_TIMEOUT_MS",
      "password": true
    }
  ],
  "servers": {
    "mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@billingserv/mcp-server"
      ],
      "env": {
        "BILLINGSERV_API_BASE_URL": "${input:billingserv-api-base-url}",
        "BILLINGSERV_API_KEY": "${input:billingserv-api-key}",
        "BILLINGSERV_TIMEOUT_MS": "${input:billingserv-timeout-ms}"
      }
    }
  }
}

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

mcp in other clients