mcp for VS Code
dev.dungbeetle/mcp
Visual regression & snapshot testing for AI agents — list runs, read semantic diffs, review.
client:VS Code
transport:stdio
runtime:npm
Install mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "dungbeetle-agent-token",
"description": "DUNGBEETLE_AGENT_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "dungbeetle-client-id",
"description": "DUNGBEETLE_CLIENT_ID",
"password": true
},
{
"type": "promptString",
"id": "dungbeetle-client-secret",
"description": "DUNGBEETLE_CLIENT_SECRET",
"password": true
},
{
"type": "promptString",
"id": "dungbeetle-server-url",
"description": "DUNGBEETLE_SERVER_URL",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"dungbeetle-mcp"
],
"env": {
"DUNGBEETLE_AGENT_TOKEN": "${input:dungbeetle-agent-token}",
"DUNGBEETLE_CLIENT_ID": "${input:dungbeetle-client-id}",
"DUNGBEETLE_CLIENT_SECRET": "${input:dungbeetle-client-secret}",
"DUNGBEETLE_SERVER_URL": "${input:dungbeetle-server-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs