mcp audit server for VS Code
io.github.joepangallo/mcp-audit-server
Thin MCP and CLI proxy for AI agent and MCP security auditing via a hosted backend
client:VS Code
transport:stdio
runtime:npm
Install mcp audit server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "agent-security-api-key",
"description": "AGENT_SECURITY_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "agent-security-base-url",
"description": "AGENT_SECURITY_BASE_URL",
"password": true
}
],
"servers": {
"mcp-audit-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"ledd-mcp-audit-server"
],
"env": {
"AGENT_SECURITY_API_KEY": "${input:agent-security-api-key}",
"AGENT_SECURITY_BASE_URL": "${input:agent-security-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs