# Security Auditor

AI-powered code security auditor. Scans GitHub repos for vulnerabilities with OWASP/CWE references and remediation guidance.

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y smithery mcp add eren-solutions/mcp-security-audit

# Browse available tools
npx -y smithery tool list eren-solutions/mcp-security-audit

# Get full schema for a tool
npx -y smithery tool get eren-solutions/mcp-security-audit security_scan

# Call a tool
npx -y smithery tool call eren-solutions/mcp-security-audit security_scan '{}'
```

## Direct MCP Connection

Endpoint: `https://mcp-security-audit--eren-solutions.run.tools`

## Tools (4)

- `security_scan` — Run a full security audit on a GitHub repository. Clones the repo, scans source files with LLM-powered analysis, return…
- `audit_status` — Check the status of a running or completed security audit. Returns findings if complete.
- `audit_list` — List recent security audits with summary information including status and risk scores.
- `audit_stats` — Get aggregate audit statistics — total scans, findings breakdown by severity, average risk score.

```bash
# Get full input/output schema for a tool
npx -y smithery tool get eren-solutions/mcp-security-audit <tool-name>
```

## Prompts (2)

- `scan_workflow` — Step-by-step guide to scan a repository for security vulnerabilities.
- `interpret_results` — How to interpret audit results and prioritize fixes.
