Skip to content
VS Code

scanpay for VS Code

io.github.misterio070/scanpay

Code security scanner for AI agents. 45+ vulnerability patterns, AST analysis, Solana micropayments.

client:VS Code transport:stdio runtime:npm

Install scanpay in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "scanpay-url",
      "description": "SCANPAY_URL",
      "password": true
    }
  ],
  "servers": {
    "scanpay": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "scanpay-mcp-server"
      ],
      "env": {
        "SCANPAY_URL": "${input:scanpay-url}"
      }
    }
  }
}

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

scanpay in other clients