Skip to content
VS Code

groundtruth for VS Code

io.github.rm-rf-prod/groundtruth

Live docs MCP server. 598+ libraries, evidence-verified answers, code audit, snippets, dispatch.

client:VS Code transport:stdio runtime:npm

Install groundtruth in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "gt-github-token",
      "description": "GT_GITHUB_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "groundtruth": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@groundtruth-mcp/gt-mcp"
      ],
      "env": {
        "GT_GITHUB_TOKEN": "${input:gt-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

groundtruth in other clients