mcp for VS Code
ai.snapdiff/mcp
Visual-diff & change-detection tools that catch agentic UI drift for coding agents.
client:VS Code
transport:stdio
runtime:npm
Install mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "snapdiff-api-key",
"description": "SNAPDIFF_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "snapdiff-api-url",
"description": "SNAPDIFF_API_URL",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@corralimited/snapdiff-mcp"
],
"env": {
"SNAPDIFF_API_KEY": "${input:snapdiff-api-key}",
"SNAPDIFF_API_URL": "${input:snapdiff-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs