tronbyt mcp for VS Code
io.github.jonfishr/tronbyt-mcp
Control Tidbyt/Tronbyt LED displays: push text, images, and apps; brightness and night mode.
client:VS Code
transport:stdio
runtime:npm
Install tronbyt mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "tronbyt-base-url",
"description": "TRONBYT_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "tronbyt-api-key",
"description": "TRONBYT_API_KEY",
"password": true
}
],
"servers": {
"tronbyt-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"tronbyt-mcp"
],
"env": {
"TRONBYT_BASE_URL": "${input:tronbyt-base-url}",
"TRONBYT_API_KEY": "${input:tronbyt-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