Skip to content
VS Code

u-he Preset Randomizer for VS Code

io.github.fannon/u-he-preset-randomizer

Generate, randomize, explain, and manage u-he synthesizer presets via the Model Context Protocol.

client:VS Code transport:stdio runtime:npm

Install u-he Preset Randomizer in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "uhe-custom-folder",
      "description": "UHE_CUSTOM_FOLDER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "debug",
      "description": "DEBUG",
      "password": true
    }
  ],
  "servers": {
    "u-he-preset-randomizer": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "u-he-preset-randomizer"
      ],
      "env": {
        "UHE_CUSTOM_FOLDER": "${input:uhe-custom-folder}",
        "DEBUG": "${input:debug}"
      }
    }
  }
}

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

u-he Preset Randomizer in other clients