Stremio MCP Server for VS Code
io.github.netixc/stremio-mcp
Search, play, and control Stremio on Android TV over native ADB.
client:VS Code
transport:stdio
runtime:pypi
Install Stremio MCP Server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "android-tv-host",
"description": "ANDROID_TV_HOST",
"password": true
},
{
"type": "promptString",
"id": "android-tv-port",
"description": "ANDROID_TV_PORT",
"password": true
},
{
"type": "promptString",
"id": "tmdb-api-key",
"description": "TMDB_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "stremio-auth-key",
"description": "STREMIO_AUTH_KEY",
"password": true
},
{
"type": "promptString",
"id": "adb-path",
"description": "ADB_PATH",
"password": true
}
],
"servers": {
"stremio-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"stremio-mcp-server"
],
"env": {
"ANDROID_TV_HOST": "${input:android-tv-host}",
"ANDROID_TV_PORT": "${input:android-tv-port}",
"TMDB_API_KEY": "${input:tmdb-api-key}",
"STREMIO_AUTH_KEY": "${input:stremio-auth-key}",
"ADB_PATH": "${input:adb-path}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs