Skip to content
VS Code

openDAW MCP for VS Code

io.github.ameobius/opendaw-mcp

262 MCP tools for agent-native control of openDAW, a browser-based DAW

client:VS Code transport:stdio runtime:oci

Install openDAW MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "opendaw-host-dir",
      "description": "OPENDAW_HOST_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "opendaw-url",
      "description": "OPENDAW_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "opendaw-export-dir",
      "description": "OPENDAW_EXPORT_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "node-bin-dir",
      "description": "NODE_BIN_DIR",
      "password": true
    }
  ],
  "servers": {
    "opendaw-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/ameobius/opendaw-mcp:1.13.0"
      ],
      "env": {
        "OPENDAW_HOST_DIR": "${input:opendaw-host-dir}",
        "OPENDAW_URL": "${input:opendaw-url}",
        "OPENDAW_EXPORT_DIR": "${input:opendaw-export-dir}",
        "NODE_BIN_DIR": "${input:node-bin-dir}"
      }
    }
  }
}

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

openDAW MCP in other clients