Skip to content
VS Code

ASMHunter for VS Code

app.asmhunter/asmhunter-mcp

Drive ASMHunter attack-surface monitoring from an AI agent: recon, scans, findings, reports.

client:VS Code transport:stdio runtime:pypi

Install ASMHunter in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "asmhunter-token",
      "description": "ASMHUNTER_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "asmhunter-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "asmhunter-mcp"
      ],
      "env": {
        "ASMHUNTER_TOKEN": "${input:asmhunter-token}"
      }
    }
  }
}

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

ASMHunter in other clients