Skip to content
VS Code

fixme agent for VS Code

io.github.rotem1230/fixme-agent

Real-time AI code quality — 30 validators, 17 languages, 813+ checks

client:VS Code transport:stdio runtime:npm

Install fixme agent in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "fixme-token",
      "description": "FIXME_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "fixme-agent": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "fixme-mcp"
      ],
      "env": {
        "FIXME_TOKEN": "${input:fixme-token}"
      }
    }
  }
}

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

fixme agent in other clients