Skip to content
VS Code

mcp server for VS Code

io.github.gooodbilling/mcp-server

GooodBilling 公式 MCP Server — Claude Desktop / Cursor 等の MCP 対応クライアントから AI ファーストで請求書・見積を操作する

client:VS Code transport:stdio runtime:npm

Install mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "gooodbilling-api-token",
      "description": "GOOODBILLING_API_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gooodbilling-api-base-url",
      "description": "GOOODBILLING_API_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@gooodbilling/mcp-server"
      ],
      "env": {
        "GOOODBILLING_API_TOKEN": "${input:gooodbilling-api-token}",
        "GOOODBILLING_API_BASE_URL": "${input:gooodbilling-api-base-url}"
      }
    }
  }
}

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

mcp server in other clients