On this page
Reports and Evidence
MCP Audit supports human-readable reports and machine-readable evidence.
Markdown
Markdown reports are useful for reviews and pull request attachments:
mcp-audit scan --path . --format markdown --out report.mdReports include an executive summary, risk score, findings by severity, tool inventory, auth and transport review, remediation checklist, and raw findings.
JSON
JSON is intended for automation and downstream processing:
mcp-audit scan --path . --format json --out report.jsonSARIF
SARIF is intended for GitHub code scanning and compatible security tooling:
mcp-audit scan --path . --format sarif --out results.sarif --fail-on highSBOM
Generate an offline CycloneDX SBOM from local project metadata:
mcp-audit sbom --path . --out sbom.cdx.jsonBatoi Guard Evidence
Export Batoi Guard evidence for governance workflows:
mcp-audit scan --path . --format guard --out guard-evidence.jsonOutput Selection
| Output | Best for | Consumer | Retention |
|---|---|---|---|
| Markdown | Human review and pull request discussion | Developers, security reviewers | Attach to review or release notes |
| JSON | Custom automation | Internal tools and scripts | Store when downstream processing is needed |
| SARIF | Code scanning dashboards | GitHub code scanning and compatible tools | Keep with CI run artifacts |
| SBOM | Dependency and provenance review | Security, compliance, release teams | Retain with release evidence |
| Guard evidence | Governed platform audit trail | Batoi Guard and governance workflows | Retain with workspace evidence |