Skip to content
VS Code

HarnessScope for VS Code

io.github.moongioh/hscope

Turn-level governance observability for Claude Code transcripts. Local-first, no LLM inside.

client:VS Code transport:stdio runtime:npm

Install HarnessScope in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "hscope-mcp-write",
      "description": "HSCOPE_MCP_WRITE",
      "password": true
    }
  ],
  "servers": {
    "hscope": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "hscope"
      ],
      "env": {
        "HSCOPE_MCP_WRITE": "${input:hscope-mcp-write}"
      }
    }
  }
}

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

HarnessScope in other clients