suprawall mcp for VS Code
io.github.wiserautomation/suprawall-mcp
SupraWall security gateway for AI agents. Provides deterministic guardrails for MCP agents.
client:VS Code
transport:stdio
runtime:npm
Install suprawall mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "suprawall-api-key",
"description": "SUPRAWALL_API_KEY",
"password": true
}
],
"servers": {
"suprawall-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"suprawall-mcp-plugin"
],
"env": {
"SUPRAWALL_API_KEY": "${input:suprawall-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