Skip to content
VS Code

genieacs mcp for VS Code

io.github.geiserx/genieacs-mcp

MCP server bridging GenieACS TR-069 ACS instances to LLMs for CPE device management

client:VS Code transport:stdio runtime:npm

Install genieacs mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "acs-url",
      "description": "ACS_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "acs-user",
      "description": "ACS_USER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "acs-pass",
      "description": "ACS_PASS",
      "password": true
    }
  ],
  "servers": {
    "genieacs-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "genieacs-mcp"
      ],
      "env": {
        "ACS_URL": "${input:acs-url}",
        "ACS_USER": "${input:acs-user}",
        "ACS_PASS": "${input:acs-pass}"
      }
    }
  }
}

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

genieacs mcp in other clients