Skip to content
VS Code

OrangePro for VS Code

io.github.orangeproai/orangepro

Find test gaps, generate grounded tests, and dynamically prove behavior with mutation testing.

client:VS Code transport:stdio runtime:npm

Install OrangePro in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "openai-api-key",
      "description": "OPENAI_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "anthropic-api-key",
      "description": "ANTHROPIC_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ollama-base-url",
      "description": "OLLAMA_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "orangepro": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@orangepro/mcp-server"
      ],
      "env": {
        "OPENAI_API_KEY": "${input:openai-api-key}",
        "ANTHROPIC_API_KEY": "${input:anthropic-api-key}",
        "OLLAMA_BASE_URL": "${input:ollama-base-url}"
      }
    }
  }
}

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

OrangePro in other clients