stb mcp server for VS Code
io.github.lightnet19/stb-mcp-server
MCP server untuk kelola server STB Armbian: system info, Docker, AdGuard, file ops via SSH.
client:VS Code
transport:stdio
runtime:pypi
Install stb mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "stb-host",
"description": "STB_HOST",
"password": true
},
{
"type": "promptString",
"id": "stb-user",
"description": "STB_USER",
"password": true
},
{
"type": "promptString",
"id": "stb-password",
"description": "STB_PASSWORD",
"password": true
}
],
"servers": {
"stb-mcp-server": {
"type": "stdio",
"command": "uvx",
"args": [
"stb-mcp-server"
],
"env": {
"STB_HOST": "${input:stb-host}",
"STB_USER": "${input:stb-user}",
"STB_PASSWORD": "${input:stb-password}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs