Skip to content
VS Code

resume optimizer for VS Code

io.github.vpatser1/resume-optimizer

Resume analysis, ATS compatibility checks, bullet improvements, job-tailored optimization

client:VS Code transport:stdio runtime:npm

Install resume optimizer in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "license-key",
      "description": "LICENSE_KEY",
      "password": true
    }
  ],
  "servers": {
    "resume-optimizer": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "resume-optimizer"
      ],
      "env": {
        "LICENSE_KEY": "${input:license-key}"
      }
    }
  }
}

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

resume optimizer in other clients