Skip to content
VS Code

AgentSecurityLens MCP Security Trust Check for VS Code

io.github.professor2k8/agent-security-lens

MCP security trust-check for agents before installing MCPs, Skills or tools.

client:VS Code transport:stdio runtime:npm

Install AgentSecurityLens MCP Security Trust Check in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "asl-api-url",
      "description": "ASL_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "asl-api-key",
      "description": "ASL_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "asl-mode",
      "description": "ASL_MODE",
      "password": true
    }
  ],
  "servers": {
    "agent-security-lens": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "agent-security-lens"
      ],
      "env": {
        "ASL_API_URL": "${input:asl-api-url}",
        "ASL_API_KEY": "${input:asl-api-key}",
        "ASL_MODE": "${input:asl-mode}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

AgentSecurityLens MCP Security Trust Check in other clients