Skip to content
VS Code

base security scanner mcp for VS Code

io.github.lordbasilaiassistant-sudo/base-security-scanner-mcp

MCP server to scan smart contracts on Base for honeypots, rug pulls, and vulnerabilities.

client:VS Code transport:stdio runtime:npm

Install base security scanner mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "rpc-url",
      "description": "RPC_URL",
      "password": true
    }
  ],
  "servers": {
    "base-security-scanner-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "base-security-scanner-mcp"
      ],
      "env": {
        "RPC_URL": "${input:rpc-url}"
      }
    }
  }
}

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

base security scanner mcp in other clients