Skip to content
VS Code

privacyscrubber mcp for VS Code

io.github.moxno/privacyscrubber-mcp

Zero-Trust PII & secrets sanitizer. Locally scrubs data in-memory before sending context to LLMs.

client:VS Code transport:stdio runtime:npm

Install privacyscrubber mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "privacyscrubber-key",
      "description": "PRIVACYSCRUBBER_KEY",
      "password": true
    }
  ],
  "servers": {
    "privacyscrubber-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@privacyscrubber/mcp-server"
      ],
      "env": {
        "PRIVACYSCRUBBER_KEY": "${input:privacyscrubber-key}"
      }
    }
  }
}

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

privacyscrubber mcp in other clients