Skip to content
VS Code

reviewguru for VS Code

io.github.kapruka/reviewguru

Query Sri Lankan businesses, doctors, and reviews from any MCP-aware AI agent.

client:VS Code transport:stdio runtime:pypi

Install reviewguru in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "reviewguru-api",
      "description": "REVIEWGURU_API",
      "password": true
    }
  ],
  "servers": {
    "reviewguru": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "reviewguru-mcp"
      ],
      "env": {
        "REVIEWGURU_API": "${input:reviewguru-api}"
      }
    }
  }
}

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

reviewguru in other clients