Skip to content
VS Code

OpsDoctor for VS Code

io.github.jhicks935-lab/opsdoctor

AI-powered CRM diagnostics, workflow audits, and industry benchmarks for SMBs.

client:VS Code transport:stdio runtime:npm

Install OpsDoctor in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "gemini-api-key",
      "description": "GEMINI_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "opsdoctor-kb-api-url",
      "description": "OPSDOCTOR_KB_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "opsdoctor-kb-api-key",
      "description": "OPSDOCTOR_KB_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "opsdoctor": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "opsdoctor-mcp"
      ],
      "env": {
        "GEMINI_API_KEY": "${input:gemini-api-key}",
        "OPSDOCTOR_KB_API_URL": "${input:opsdoctor-kb-api-url}",
        "OPSDOCTOR_KB_API_KEY": "${input:opsdoctor-kb-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

OpsDoctor in other clients