PageGuard MCP for VS Code
io.github.pageguard/pageguard-mcp
Privacy compliance scanning for AI coding tools. Detects tracking tech, cookies, and data gaps.
client:VS Code
transport:stdio
runtime:npm
Install PageGuard MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "pageguard-api-key",
"description": "PAGEGUARD_API_KEY",
"password": true
}
],
"servers": {
"pageguard-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"pageguard-mcp"
],
"env": {
"PAGEGUARD_API_KEY": "${input:pageguard-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