Skip to content
VS Code

Rigol DHO824 Oscilloscope for VS Code

io.github.aimoda/rigol-dho824-mcp

Control and query Rigol DHO824 oscilloscope for waveform capture and measurements

client:VS Code transport:stdio runtime:oci

Install Rigol DHO824 Oscilloscope in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "rigol-resource",
      "description": "RIGOL_RESOURCE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "visa-timeout",
      "description": "VISA_TIMEOUT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "rigol-beeper-enabled",
      "description": "RIGOL_BEEPER_ENABLED",
      "password": true
    },
    {
      "type": "promptString",
      "id": "rigol-temp-dir",
      "description": "RIGOL_TEMP_DIR",
      "password": true
    }
  ],
  "servers": {
    "rigol-dho824-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/aimoda/rigol-dho824-mcp:0.1.143-main.2b177ae"
      ],
      "env": {
        "RIGOL_RESOURCE": "${input:rigol-resource}",
        "VISA_TIMEOUT": "${input:visa-timeout}",
        "RIGOL_BEEPER_ENABLED": "${input:rigol-beeper-enabled}",
        "RIGOL_TEMP_DIR": "${input:rigol-temp-dir}"
      }
    }
  }
}

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

Rigol DHO824 Oscilloscope in other clients