Skip to content
VS Code

omp-worker-mcp for VS Code

io.github.divenire990/omp-worker-mcp

Delegate complete coding tasks to the local OMP default model and inspect the result.

client:VS Code transport:stdio runtime:npm

Install omp-worker-mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "omp-worker-omp-command",
      "description": "OMP_WORKER_OMP_COMMAND",
      "password": true
    }
  ],
  "servers": {
    "omp-worker-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "omp-worker-mcp"
      ],
      "env": {
        "OMP_WORKER_OMP_COMMAND": "${input:omp-worker-omp-command}"
      }
    }
  }
}

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

omp-worker-mcp in other clients