Skip to content
VS Code

Auvik for VS Code

io.github.wyre-ai/auvik-mcp

MCP server for the Auvik network monitoring API — devices, alerts, statistics, billing.

client:VS Code transport:stdio runtime:oci

Install Auvik in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "auvik-username",
      "description": "AUVIK_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "auvik-api-key",
      "description": "AUVIK_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "auvik-region",
      "description": "AUVIK_REGION",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-transport",
      "description": "MCP_TRANSPORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "auth-mode",
      "description": "AUTH_MODE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "log-level",
      "description": "LOG_LEVEL",
      "password": true
    }
  ],
  "servers": {
    "auvik-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/wyre-ai/auvik-mcp:v1.4.4"
      ],
      "env": {
        "AUVIK_USERNAME": "${input:auvik-username}",
        "AUVIK_API_KEY": "${input:auvik-api-key}",
        "AUVIK_REGION": "${input:auvik-region}",
        "MCP_TRANSPORT": "${input:mcp-transport}",
        "AUTH_MODE": "${input:auth-mode}",
        "LOG_LEVEL": "${input:log-level}"
      }
    }
  }
}

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

Auvik in other clients