Skip to content
VS Code

Tuning Engines - Governed AI Runtime for VS Code

io.github.cerebrixos-org/tuning-engines

Govern model, agent, skill, and MCP workflows with policy, approvals, traces, and usage analytics.

client:VS Code transport:stdio runtime:npm

Install Tuning Engines - Governed AI Runtime 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 - Governed AI Runtime in other clients