lightbill mcp server for VS Code
io.github.lightnet19/lightbill-mcp-server
LightBill ISP billing MCP server: 134 tools (customers, routers, OLT, invoices, payment).
client:VS Code
transport:stdio
runtime:pypi
Install lightbill mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "lightbill-base-url",
"description": "LIGHTBILL_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "lightbill-api-key",
"description": "LIGHTBILL_API_KEY",
"password": true
}
],
"servers": {
"lightbill-mcp-server": {
"type": "stdio",
"command": "uvx",
"args": [
"lightbill-mcp-server"
],
"env": {
"LIGHTBILL_BASE_URL": "${input:lightbill-base-url}",
"LIGHTBILL_API_KEY": "${input:lightbill-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