arcwall security for VS Code
io.github.rom-baro/arcwall-security
Security scanning for AI coding tools. Detects secrets, threat models, and runs pre-commit checks.
client:VS Code
transport:stdio
runtime:npm
Install arcwall security in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "arcwall-api-key",
"description": "ARCWALL_API_KEY",
"password": true
}
],
"servers": {
"arcwall-security": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@arcwall/mcp-server"
],
"env": {
"ARCWALL_API_KEY": "${input:arcwall-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