Skip to content
VS Code

Domotz for VS Code

io.github.wyre-technology/domotz-mcp

MCP server for Domotz network monitoring — agents, devices, alerts, and network discovery.

client:VS Code transport:stdio runtime:oci

Install Domotz in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "domotz-api-key",
      "description": "DOMOTZ_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "domotz-api-url",
      "description": "DOMOTZ_API_URL",
      "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": {
    "domotz-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/wyre-technology/domotz-mcp:v1.1.10"
      ],
      "env": {
        "DOMOTZ_API_KEY": "${input:domotz-api-key}",
        "DOMOTZ_API_URL": "${input:domotz-api-url}",
        "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

Domotz in other clients