Skip to content
VS Code

Overdrive Intel for VS Code

io.github.looney-tic/intel-overdrive

AI coding ecosystem intelligence — breaking changes, tools, security alerts from 900+ sources

client:VS Code transport:stdio runtime:npm

Install Overdrive Intel in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "overdrive-api-key",
      "description": "OVERDRIVE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "overdrive-api-url",
      "description": "OVERDRIVE_API_URL",
      "password": true
    }
  ],
  "servers": {
    "intel-overdrive": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "intel-overdrive-mcp"
      ],
      "env": {
        "OVERDRIVE_API_KEY": "${input:overdrive-api-key}",
        "OVERDRIVE_API_URL": "${input:overdrive-api-url}"
      }
    }
  }
}

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

Overdrive Intel in other clients