Skip to content
VS Code

Optibot for VS Code

ai.getoptimal/optibot

AI code review for your AI assistant — review local changes, branch diffs, and patch files.

client:VS Code transport:stdio runtime:npm

Install Optibot in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "optibot-api-key",
      "description": "OPTIBOT_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "optibot": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@optimalai/optibot-mcp"
      ],
      "env": {
        "OPTIBOT_API_KEY": "${input:optibot-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

Optibot in other clients