Skip to content
VS Code

Overwing for VS Code

ai.overwing/mcp

Guardrails for LLM output: pass / fail / review verdicts with calibrated confidence in under 500 ms.

client:VS Code transport:stdio runtime:npm

Install Overwing in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "overwing-api-key",
      "description": "OVERWING_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "overwing-base-url",
      "description": "OVERWING_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "overwing-mcp"
      ],
      "env": {
        "OVERWING_API_KEY": "${input:overwing-api-key}",
        "OVERWING_BASE_URL": "${input:overwing-base-url}"
      }
    }
  }
}

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

Overwing in other clients