RokuMCP for VS Code
io.github.jack1590/rokumcp
MCP server for Roku device automation — deploy, ECP control, screenshots, and debug console
client:VS Code
transport:stdio
runtime:npm
Install RokuMCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "roku-device-host",
"description": "ROKU_DEVICE_HOST",
"password": true
},
{
"type": "promptString",
"id": "roku-device-password",
"description": "ROKU_DEVICE_PASSWORD",
"password": true
}
],
"servers": {
"rokumcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"roku-mcp"
],
"env": {
"ROKU_DEVICE_HOST": "${input:roku-device-host}",
"ROKU_DEVICE_PASSWORD": "${input:roku-device-password}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs