Skip to content
VS Code

tuning engines for VS Code

io.github.cerebrixos/tuning-engines

Domain-specific LLM fine-tuning — sovereign models trained on your data, zero infrastructure.

client:VS Code transport:stdio runtime:npm

Install tuning engines in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "te-api-key",
      "description": "TE_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "tuning-engines": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "tuningengines-cli"
      ],
      "env": {
        "TE_API_KEY": "${input:te-api-key}"
      }
    }
  }
}

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

tuning engines in other clients