Skip to content
VS Code

smartest-tv for VS Code

io.github.hybirdss/smartest-tv

Control any smart TV with natural language. Resolve Netflix/YouTube/Spotify and deep-link.

client:VS Code transport:stdio runtime:pypi

Install smartest-tv in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "tv-platform",
      "description": "TV_PLATFORM",
      "password": true
    },
    {
      "type": "promptString",
      "id": "tv-ip",
      "description": "TV_IP",
      "password": true
    },
    {
      "type": "promptString",
      "id": "tv-mac",
      "description": "TV_MAC",
      "password": true
    }
  ],
  "servers": {
    "smartest-tv": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "stv"
      ],
      "env": {
        "TV_PLATFORM": "${input:tv-platform}",
        "TV_IP": "${input:tv-ip}",
        "TV_MAC": "${input:tv-mac}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

smartest-tv in other clients