Skip to content
VS Code

Eleion Scanner for VS Code

io.github.hernaninverso/eleion-scanner-mcp

Register/verify your domains, queue security scans, and read findings (CVE, severity).

client:VS Code transport:stdio runtime:npm

Install Eleion Scanner in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "scanner-api-key",
      "description": "SCANNER_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "eleion-scanner-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "eleion-scanner-mcp"
      ],
      "env": {
        "SCANNER_API_KEY": "${input:scanner-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

Eleion Scanner in other clients