Skip to content
VS Code

Divoom LAN Watchface for VS Code

io.github.divoomdevelop/mcp-divoom-lan

MCP server for Divoom LAN watchface APIs; read-before-write safe. V2 editor linked in README.

client:VS Code transport:stdio runtime:npm

Install Divoom LAN Watchface in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "divoom-device-host",
      "description": "DIVOOM_DEVICE_HOST",
      "password": true
    },
    {
      "type": "promptString",
      "id": "divoom-device-port",
      "description": "DIVOOM_DEVICE_PORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "divoom-timeout-ms",
      "description": "DIVOOM_TIMEOUT_MS",
      "password": true
    }
  ],
  "servers": {
    "mcp-divoom-lan": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-divoom-lan"
      ],
      "env": {
        "DIVOOM_DEVICE_HOST": "${input:divoom-device-host}",
        "DIVOOM_DEVICE_PORT": "${input:divoom-device-port}",
        "DIVOOM_TIMEOUT_MS": "${input:divoom-timeout-ms}"
      }
    }
  }
}

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

Divoom LAN Watchface in other clients