Skip to content
VS Code

keenetic mcp for VS Code

io.github.salatmaster/keenetic-mcp

Control a Keenetic router: devices, Wi-Fi, VPN routing, segments, safe verified writes.

client:VS Code transport:stdio runtime:npm

Install keenetic mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "keenetic-host",
      "description": "KEENETIC_HOST",
      "password": true
    },
    {
      "type": "promptString",
      "id": "keenetic-user",
      "description": "KEENETIC_USER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "keenetic-password",
      "description": "KEENETIC_PASSWORD",
      "password": true
    }
  ],
  "servers": {
    "keenetic-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "keenetic-mcp"
      ],
      "env": {
        "KEENETIC_HOST": "${input:keenetic-host}",
        "KEENETIC_USER": "${input:keenetic-user}",
        "KEENETIC_PASSWORD": "${input:keenetic-password}"
      }
    }
  }
}

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

keenetic mcp in other clients