Skip to content
VS Code

github repo mcp for VS Code

io.github.thedhruv-07/github-repo-mcp

MCP server for GitHub repo health, commit summaries, issue triage, and RAG Q&A.

client:VS Code transport:stdio runtime:npm

Install github repo mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "github-token",
      "description": "GITHUB_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "voyage-api-key",
      "description": "VOYAGE_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "qdrant-url",
      "description": "QDRANT_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "qdrant-api-key",
      "description": "QDRANT_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "github-repo-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@thedhruv07/github-repo-mcp"
      ],
      "env": {
        "GITHUB_TOKEN": "${input:github-token}",
        "VOYAGE_API_KEY": "${input:voyage-api-key}",
        "QDRANT_URL": "${input:qdrant-url}",
        "QDRANT_API_KEY": "${input:qdrant-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

github repo mcp in other clients