albyhub admin mcp for VS Code
io.github.llmops-pro/albyhub-admin-mcp
Admin an Alby Hub Lightning node from an agent: info, balances, channels; safety-gated writes.
client:VS Code
transport:stdio
runtime:npm
Install albyhub admin mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "albyhub-url",
"description": "ALBYHUB_URL",
"password": true
},
{
"type": "promptString",
"id": "albyhub-token",
"description": "ALBYHUB_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "albyhub-read-only",
"description": "ALBYHUB_READ_ONLY",
"password": true
}
],
"servers": {
"albyhub-admin-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"albyhub-admin-mcp"
],
"env": {
"ALBYHUB_URL": "${input:albyhub-url}",
"ALBYHUB_TOKEN": "${input:albyhub-token}",
"ALBYHUB_READ_ONLY": "${input:albyhub-read-only}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs