Quickstart
Run SecurityScanner from inside your AI editor in 3 minutes.
- Go to /settings/api-keys and click Generate key. Copy the
ss_live_…value. - Add this JSON to your editor's MCP config (path depends on editor — see IDE setup):
{ "mcpServers": { "security-scanner": { "command": "npx", "args": ["-y", "@security-scanner/mcp-server"], "env": { "SCANNER_API_KEY": "ss_live_…" } } } } - Restart your editor. In a new chat, type:
scan example.com. The MCP server will start a scan and return ascan_id. - To check progress:
get_scan_status <scan_id>. When the scan completes, runlist_findings <scan_id>. - For any critical or high finding, generate a code fix:
propose_fix <finding_id>. (Pro plan or higher.) - Apply + verify:
apply_fix <finding_id>. (Business plan or higher.)
Next: Tools reference