Billium for VS Code
io.github.billiumhq/billium
Official Billium MCP server: manage crypto invoices, payments, and webhooks from any MCP host.
client:VS Code
transport:stdio
runtime:npm
Install Billium in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "billium-api-key",
"description": "BILLIUM_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "billium-merchant-id",
"description": "BILLIUM_MERCHANT_ID",
"password": true
},
{
"type": "promptString",
"id": "billium-base-url",
"description": "BILLIUM_BASE_URL",
"password": true
}
],
"servers": {
"billium": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@billium/mcp"
],
"env": {
"BILLIUM_API_KEY": "${input:billium-api-key}",
"BILLIUM_MERCHANT_ID": "${input:billium-merchant-id}",
"BILLIUM_BASE_URL": "${input:billium-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