Skip to content
VS Code

reposcout for VS Code

io.github.rakesh1002/reposcout

Discover, enrich, and rank GitHub repos for an objective with weighted, evidence-based scoring.

client:VS Code transport:stdio runtime:npm

Install reposcout in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "github-token",
      "description": "GITHUB_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "reposcout": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@rakeshroushan/reposcout"
      ],
      "env": {
        "GITHUB_TOKEN": "${input:github-token}"
      }
    }
  }
}

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

reposcout in other clients