Skip to content
VS Code

Denon AVR for VS Code

io.github.amineutron/denon-mcp

Control a Denon AVR home cinema receiver over telnet: power, volume, mute, input source, status.

client:VS Code transport:stdio runtime:pypi

Install Denon AVR in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "denon-host",
      "description": "DENON_HOST",
      "password": true
    },
    {
      "type": "promptString",
      "id": "denon-port",
      "description": "DENON_PORT",
      "password": true
    }
  ],
  "servers": {
    "denon-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "denon-mcp"
      ],
      "env": {
        "DENON_HOST": "${input:denon-host}",
        "DENON_PORT": "${input:denon-port}"
      }
    }
  }
}

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

Denon AVR in other clients