Skyrxin/sast-mcp-server

πŸ”’ Security
0 Views
0 Installs

🐍 🏠 🍎 πŸͺŸ 🐧 - SAST/DAST server exposing 11 security scanners (Bandit, Semgrep, Trivy, CodeQL, Checkov, Gitleaks, OSV-Scanner, Grype, OWASP ZAP, and more) with closed-loop remediation (scanβ†’patchβ†’re-scanβ†’verify), SARIF/SBOM/VEX export, compliance reporting, and CI integrations (GitHub Advanced Security, DefectDojo, Slack, Jira).

Quick Install

One-Click IDE Configuration
claude_desktop_config.json
{
  "mcpServers": {
    "skyrxin-sast-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "skyrxin-sast-mcp-server"
      ]
    }
  }
}
Or

Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.

Documentation Overview

SAST MCP Server

PyPI version sast-mcp-server MCP server Python 3.10+ License: MIT CI codecov

Static Application Security Testing (SAST) for AI agents. A production-ready MCP server that gives any AI agent the ability to scan code for security vulnerabilities.

Supports 11 industry-standard scanners:

ScannerLanguages / ScopeType
BanditPythonSecurity linter
njsscanJavaScript, Node.jsStatic analysis
BearerPython, JS, Ruby, Java, Go, PHPData-flow SAST
Semgrep30+ languagesRule-based SAST
TrivyAll (CVEs, Secrets, IaC, images)Multi-scanner
CodeQLPython, JS, Java, Go, C/C++, C#, Ruby, SwiftSemantic SAST
CheckovTerraform, K8s, Docker, CloudFormationIaC policy scanner
GitleaksAll (.git history)Deep secret scanning
OSV-ScannerMultiple (lockfiles, sboms)SCA
GrypeContainers, OS packages, lockfiles, SBOMsSCA / image scanning
OWASP ZAPRUNTIMEDynamic (DAST) via Docker

Works with any MCP-compatible agent: Gemini CLI, Claude Desktop, OpenAI Agents, Cursor, Windsurf, and more.


Features

  • πŸ” 11 SAST/SCA/DAST scanners with a unified output format
  • 🌳 AST-aware context β€” shows the full enclosing function, not just a line number
  • πŸ“Š Severity & confidence filtering β€” focus on what matters
  • πŸ”€ Git diff mode β€” scan only modified files for incremental reviews
  • πŸ™ˆ Ignore management β€” suppress false positives with audit trail
  • πŸ“„ Pagination β€” handle large codebases without overwhelming the agent
  • 🌐 Dual transport β€” stdio (local) or Streamable HTTP (remote deployments)
  • πŸ” JWT & API key authentication β€” secure remote deployments
  • πŸ“¦ One command install β€” pip install sast-mcp-server
  • πŸš€ Multi-scanner mode β€” run all installed scanners in parallel with deduplication
  • πŸ“‹ SARIF export β€” CI/CD integration with GitHub, GitLab, Azure DevOps
  • πŸ—οΈ IaC scanning β€” Terraform, Kubernetes, Docker security policies
  • πŸ”‘ Secret detection β€” find hardcoded API keys, tokens, and passwords in code and git history
  • πŸ“¦ SCA / dependency CVEs β€” scan lock files for known vulnerabilities against the OSV database
  • πŸ•·οΈ DAST β€” dynamic baseline scans of running apps via OWASP ZAP + Docker
  • πŸ“ˆ Baselines & trend tracking β€” cache scans and diff against a saved baseline
  • πŸ€– MCP Prompts & Resources β€” pre-built security workflows and live dashboards for agents
  • πŸ“€ Dashboard integrations β€” push SARIF results to DefectDojo or GitHub Code Scanning
  • 🩹 AI-assisted remediation β€” generate fix prompts and apply agent-written patches via git apply

Quick Start

The server is only as useful as the scanners installed alongside it. Pick the install path that matches how much of the toolset you want out of the box.

Option 1 β€” Full container (recommended: 9 scanners, zero setup)

docker pull ghcr.io/skyrxin/sast-mcp-server:full

Bundles bandit, njsscan, bearer, semgrep, trivy, checkov, gitleaks, osv-scanner, and grype so scan_all works immediately. Or bring up an HTTP server with one command:

docker compose up          # serves http://localhost:8080/mcp + /health /ready /metrics

Option 2 β€” pip extra (4 pip-installable scanners)

pip install "sast-mcp-server[scanners]"   # adds bandit, njsscan, semgrep, checkov

Option 3 β€” minimal / custom

pip install sast-mcp-server               # server only β€” bring your own scanners
uvx sast-mcp-server                        # run without installing

Then install whichever scanners you need (binary scanners aren't pip packages):

pip install bandit njsscan semgrep checkov     # pip-installable
# trivy:        https://aquasecurity.github.io/trivy/latest/getting-started/installation/
# grype:        https://github.com/anchore/grype#installation
# gitleaks:     https://github.com/gitleaks/gitleaks#installing
# osv-scanner:  https://google.github.io/osv-scanner/installation/
# bearer:       https://docs.bearer.com/installation/
# codeql:       https://github.com/github/codeql-cli-binaries/releases

What ships where

Scanner:full image[scanners] extraNotes
Banditβœ…βœ…pip
njsscanβœ…βœ…pip
Semgrepβœ…βœ…pip
Checkovβœ…βœ…pip
Bearerβœ…β€”install script
Trivyβœ…β€”binary
Gitleaksβœ…β€”binary
OSV-Scannerβœ…β€”binary
Grypeβœ…β€”binary
CodeQLβ€”β€”multi-GB bundle β€” mount at runtime
OWASP ZAPβ€”β€”runs via Docker on the host (run_active_scan)

At startup the server logs how many scanners it can actually see (e.g. Scanners available: 9/11 (...)), and the list_scanners tool / /ready endpoint report the same β€” so it's always obvious what you have.

sast-mcp-server MCP server


Usage with AI Agents

Gemini CLI

Install as an extension:

gemini extensions install https://github.com/Skyrxin/sast-mcp-server

Or add to your ~/.gemini/settings.json:

{
  "mcpServers": {
    "sast": {
      "command": "uvx",
      "args": ["sast-mcp-server"]
    }
  }
}

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "sast": {
      "command": "uvx",
      "args": ["sast-mcp-server"]
    }
  }
}

See full Claude Desktop guide.

Cursor IDE

Add to Cursor Settings β†’ MCP Servers:

{
  "mcpServers": {
    "sast": {
      "command": "uvx",
      "args": ["sast-mcp-server"]
    }
  }
}

See full Cursor guide.

OpenAI Agents SDK

from agents.mcp import MCPServerStdio

sast_server = MCPServerStdio(command="uvx", args=["sast-mcp-server"])

See full OpenAI guide.


Available MCP Tools

scan_vulnerabilities

Scan a directory for security vulnerabilities using a specific scanner.

ParameterTypeDefaultDescription
target_pathstringrequiredPath to scan
scanner_namestring"bearer"Scanner: bandit, njsscan, bearer, semgrep, trivy, codeql, checkov
min_severitystring"LOW"Minimum severity: LOW, MEDIUM, HIGH, CRITICAL
min_confidencestring"LOW"Minimum confidence: LOW, MEDIUM, HIGH
git_diff_onlyboolfalseOnly scan git-modified files
limitint50Max findings to return
offsetint0Pagination offset

scan_all

Run ALL installed scanners in parallel with automatic deduplication. Recommended for comprehensive security scanning.

ParameterTypeDefaultDescription
target_pathstringrequiredPath to scan
min_severitystring"MEDIUM"Minimum severity (higher default to reduce noise)
min_confidencestring"LOW"Minimum confidence
git_diff_onlyboolfalseOnly scan git-modified files
limitint50Max findings to return
offsetint0Pagination offset

scan_git_history

Scan the entire .git history for leaked secrets and credentials using Gitleaks.

ParameterTypeDefaultDescription
target_pathstring"."Path to the repository root (must contain .git)
min_severitystring"LOW"Minimum severity to report

run_active_scan

Run a dynamic (DAST) baseline scan with OWASP ZAP by orchestrating a Docker Compose stack.

ParameterTypeDefaultDescription
target_pathstringrequiredDirectory containing the docker-compose file
docker_compose_filestringrequiredName of the docker-compose file (e.g. docker-compose.yml)
target_urlstringrequiredURL of the running app once it's up (e.g. http://localhost:8080)

export_sarif

Export scan results in SARIF 2.1.0 format for CI/CD integration.

ParameterTypeDefaultDescription
target_pathstringrequiredPath to scan
scanner_namestring"bearer"Scanner to use
min_severitystring"LOW"Minimum severity
min_confidencestring"LOW"Minimum confidence
output_pathstring""File path to write SARIF (empty = return as string)

list_scanners

List available scanners, their installation status, and supported languages.

ignore_vulnerability

Suppress a finding from future scans (with audit trail).

unignore_vulnerability

Re-enable a previously suppressed finding.

list_ignored_vulnerabilities

Show all currently suppressed findings for a project.

save_baseline

Run a scan and cache the results as a named baseline for future trend comparison.

ParameterTypeDefaultDescription
target_pathstringrequiredPath to scan
tagstring"latest"Name for this baseline (e.g. main, pre-release)
scanner_namestring"bearer"Scanner to use
min_severitystring"LOW"Minimum severity to include
min_confidencestring"LOW"Minimum confidence to include

compare_baseline

Compare a fresh scan against a saved baseline to highlight new and fixed findings.

ParameterTypeDefaultDescription
target_pathstringrequiredPath to scan
tagstring"latest"Baseline tag to compare against
scanner_namestring"bearer"Scanner to use
min_severitystring"LOW"Minimum severity to include
min_confidencestring"LOW"Minimum confidence to include

upload_to_defectdojo

Import a SARIF export into a DefectDojo engagement. Requires DEFECTDOJO_URL and DEFECTDOJO_API_KEY environment variables.

ParameterTypeDefaultDescription
sarif_pathstringrequiredPath to a SARIF file from export_sarif
engagement_idintrequiredTarget DefectDojo engagement ID
activebooltrueMark imported findings active
verifiedboolfalseMark imported findings verified

upload_to_github

Upload a SARIF report to GitHub Code Scanning. Requires a GITHUB_TOKEN with security_events: write scope.

ParameterTypeDefaultDescription
sarif_pathstringrequiredPath to a SARIF file from export_sarif
repostringrequiredRepository in owner/name form
commit_shastringrequiredFull commit SHA the results apply to
refstringrequiredFully qualified ref, e.g. refs/heads/main

generate_fix_prompt

Package a cached finding's vulnerable code and context into an LLM-ready prompt that asks for a strict unified diff fix.

ParameterTypeDefaultDescription
target_pathstringrequiredScanned project root (with .sast-mcp-cache)
finding_hashstringrequiredHash of the finding to fix (from scan output)
context_windowint15Source lines to include before/after the finding

apply_patch

Apply an agent-generated unified diff to disk via git apply (paths that escape the target directory are rejected).

ParameterTypeDefaultDescription
target_pathstringrequiredDirectory the patch paths are relative to
patchstringrequiredThe unified diff text to apply
check_onlyboolfalseValidate without modifying files

evaluate_policy

Run all scanners and return an explicit PASS/FAIL verdict for CI gating.

ParameterTypeDefaultDescription
target_pathstringrequiredPath to scan
max_criticalint0Max allowed CRITICAL (βˆ’1 = unlimited)
max_highint-1Max allowed HIGH (βˆ’1 = unlimited)
max_mediumint-1Max allowed MEDIUM (βˆ’1 = unlimited)
fail_on_newboolfalseFail if findings are new vs. a scan_all baseline
baseline_tagstring"latest"Baseline tag used when fail_on_new
output_formatstring"markdown"markdown or json

export_sbom

Run all scanners and export an SBOM / vulnerability report. In CycloneDX mode, if Syft is installed the component inventory is the full dependency list (not just vulnerable packages).

ParameterTypeDefaultDescription
target_pathstringrequiredPath to scan
output_pathstring""File to write (empty = return inline)
min_severitystring"LOW"Minimum severity to include
sca_onlybooltrueOnly dependency (SCA) findings; false = all
formatstring"cyclonedx"cyclonedx or spdx (SPDX 2.3)

generate_report

Run all scanners and render an executive security report.

ParameterTypeDefaultDescription
target_pathstringrequiredPath to scan
output_pathstring""File to write (empty = return inline HTML; required for PDF)
min_severitystring"LOW"Minimum severity to include
formatstring"html"html or pdf (needs the [pdf] extra)

compliance_report

Map findings to a compliance framework and report the posture.

ParameterTypeDefaultDescription
target_pathstringrequiredPath to scan
frameworkstring"owasp"owasp, sans, pci, or cis
output_pathstring""Optional file to write the markdown report
min_severitystring"LOW"Minimum severity to include

scan_image

Scan a container image reference for vulnerabilities and secrets (Trivy or Grype).

ParameterTypeDefaultDescription
image_refstringrequiredImage reference, e.g. nginx:1.25
scanner_namestring"trivy"trivy or grype
min_severitystring"MEDIUM"Minimum severity to report
output_formatstring"markdown"markdown or json

remediate_and_verify

Closed-loop remediation: dry-run a patch, apply it, re-scan, and confirm the finding is gone (rolling the patch back on failure).

ParameterTypeDefaultDescription
target_pathstringrequiredProject root (with a .sast-mcp-cache)
finding_hashstringrequiredHash of the finding to fix
patchstringrequiredUnified diff to apply
scanner_namestring""Re-scan scanner (default: the finding's scanner)
auto_rollbackbooltrueRevert the patch if verification fails

import_sarif

Ingest an external SARIF file (Snyk, Veracode, CI jobs, …) into the normalized finding pipeline so it joins dedup / baselines / dashboards.

ParameterTypeDefaultDescription
target_pathstringrequiredProject root the results belong to
sarif_pathstringrequiredPath to a SARIF 2.1.0 file
scanner_namestring"external"Source scanner name to record
savebooltrueCache the imported findings

triage_finding

Get an exploitability/false-positive assessment prompt, or record a CycloneDX VEX decision (suppressing dispositions also add the finding to the ignore-list).

ParameterTypeDefaultDescription
target_pathstringrequiredProject root (with a .sast-mcp-cache)
finding_hashstringrequiredHash of the finding to triage
dispositionstring""exploitable, not_affected, false_positive, resolved, in_triage (empty = return a prompt)
justificationstring""Rationale / CycloneDX justification keyword

comment_on_pr

Post a security summary on a GitHub PR or GitLab merge request. Requires GITHUB_TOKEN or GITLAB_TOKEN (+ optional GITLAB_URL).

ParameterTypeDefaultDescription
providerstringrequiredgithub or gitlab
repostringrequiredowner/name (GitHub) or project ID/path (GitLab)
pr_numberintrequiredPR number / MR IID
bodystringrequiredMarkdown comment body

notify_slack / notify_teams

Send a notification to a Slack or Microsoft Teams incoming webhook (SLACK_WEBHOOK_URL / TEAMS_WEBHOOK_URL).

create_jira_issue

Open a Jira issue for a finding. Requires JIRA_URL, JIRA_EMAIL, JIRA_API_TOKEN.

ParameterTypeDefaultDescription
project_keystringrequiredJira project key (e.g. SEC)
summarystringrequiredIssue title
descriptionstringrequiredIssue description
issue_typestring"Bug"Jira issue type

Tip: scan_vulnerabilities, scan_all, and scan_git_history accept output_format="json" for machine-readable results in CI/agent pipelines.

Auth: On HTTP transports every tool is scope-gated β€” scan:read (scans, reports, exports), scan:write (baselines, patches, uploads, notifications), config:write (ignore list). Set SAST_MCP_JWT_SECRET and issue scoped JWTs.


SARIF / CI/CD Integration

Export scan results in SARIF 2.1.0 format for integration with CI/CD platforms:

# In your CI pipeline, use the MCP tool:
# export_sarif(target_path=".", scanner_name="semgrep", output_path="results.sarif")

# Then upload to GitHub Code Scanning:
# gh api /repos/{owner}/{repo}/code-scanning/sarifs -f sarif=@results.sarif

Compatible with: GitHub Code Scanning, GitLab SAST, Azure DevOps, VS Code SARIF Viewer.


Remote Deployment (Streamable HTTP)

For remote or cloud-hosted deployments, the 2026 MCP standard uses Streamable HTTP.

You can secure the server with JWT Bearer Authentication by setting a secret. Alternatively, for backward compatibility, you can use a static API key.

# Set JWT secret for secure authentication
export SAST_MCP_JWT_SECRET="your_hmac_sha256_secret"

# Or use the legacy API key method
export SAST_MCP_API_KEY="your_secure_api_key_here"

# Start the server with streamable-http transport
uv run sast-mcp-server --transport streamable-http --port 8080 --host 0.0.0.0

Note: The old sse transport is deprecated. Please migrate to streamable-http.

Core Workflows

1. Unified Vulnerability Scanning

Run any of the installed scanners individually (scan_vulnerabilities(scanner_name="bandit")) or run all of them at once using scan_all.

2. Deep Secret & Dynamic Scanning

Use scan_git_history to find API keys leaked years ago, or run_active_scan to spin up your application with Docker Compose and test it dynamically with OWASP ZAP.

3. Baseline & Trend Tracking

Save a scan as a named baseline and compare future scans against it to track new vulnerabilities, fixed issues, and severity trends over time.

  • save_baseline(target_path=".", tag="main")
  • compare_baseline(target_path=".", tag="main")

4. CI/CD Integration

Export scan results to SARIF format (export_sarif) to integrate with GitHub Code Scanning, GitLab SAST, or any other SARIF-compatible platform.

5. MCP Prompts (Security Workflows)

Pre-built security workflows that guide AI agents:

  • security_review: Full codebase assessment
  • fix_vulnerability: Focused remediation advisor
  • pr_security_check: Scan only git diffs and enforce a severity gate
  • compliance_report: Generate an OWASP Top 10 or PCI-DSS report

6. MCP Resources (Security Dashboards)

Read-only contextual data for AI agents without running a full scan:

  • sast://dashboard/{path}: Security posture dashboard
  • sast://config: Server configuration and status
  • sast://scanners: Available scanners and languages
  • sast://cache/{path}/latest: Latest scan results metadata

7. Dashboard Upload & AI-Assisted Remediation

Push SARIF results to external platforms and remediate findings with agent-written patches:

  • upload_to_defectdojo / upload_to_github: Push a SARIF export to a dashboard
  • generate_fix_prompt: Build an LLM-ready prompt for a specific finding
  • apply_patch: Apply the resulting unified diff via git apply

Docker

Pre-built images are published to GHCR on every release:

docker pull ghcr.io/skyrxin/sast-mcp-server:full       # 9 scanners (recommended)
docker pull ghcr.io/skyrxin/sast-mcp-server:minimal    # bandit, njsscan, bearer

# Run as an HTTP server
docker run -p 8080:8080 -e SAST_MCP_JWT_SECRET=your-secret \
  ghcr.io/skyrxin/sast-mcp-server:full --transport streamable-http

# …or use the bundled compose file (exposes /health /ready /metrics too)
docker compose up

Prefer to build locally?

docker build -t sast-mcp-server .                       # minimal
docker build -f Dockerfile.full -t sast-mcp-server:full .   # full

CodeQL and OWASP ZAP are not bundled in the image β€” CodeQL ships a multi-GB bundle (mount at runtime) and ZAP's run_active_scan orchestrates Docker on the host.


Reliability

"Production-ready" isn't a slogan here β€” it's measured in CI on every push:

  • 226 tests, 74% line coverage (Codecov), green across Python 3.10–3.13, with mypy type-checking enforced.
  • Self-scan, every build. The server runs its own scanners against its own code in CI; the SARIF + summary are published as the self-scan-report artifact. A snapshot lives in examples/self-scan/.
  • Load-tested HTTP transport. scripts/loadtest.py runs in CI against the Streamable HTTP server: a local run sustains ~210 req/s at p95 β‰ˆ 290 ms with zero failures across /health, /ready, /metrics under 30 concurrent workers.
  • Ops endpoints β€” /health (liveness), /ready (cached scanner inventory, 503 when none installed), /metrics (Prometheus text).
  • Bounded under load β€” a configurable concurrency cap (SAST_MCP_MAX_CONCURRENT_SCANS) around subprocess scanners, per-client token-bucket rate limiting (SAST_MCP_RATE_LIMIT_PER_MIN) for HTTP transports, per-scanner timeouts, and an optional incremental-scan cache.

Run the load test yourself:

python scripts/loadtest.py --requests 2000 --concurrency 50

Configuration

Environment Variables

VariableDefaultDescription
SAST_MCP_TIMEOUT300Scan timeout in seconds
SAST_MCP_LOG_LEVELINFOLog level: DEBUG, INFO, WARNING, ERROR
SAST_MCP_CACHE_TTL86400Cache time-to-live in seconds (non-tagged scans)
SAST_MCP_CACHE_MAX_SCANS200Max non-tagged cached scans to retain (0 = unlimited)
SAST_MCP_HTTP_RETRIES3Retry attempts for integration HTTP calls
SAST_MCP_HTTP_TIMEOUT60Per-request timeout (s) for integration HTTP calls
SAST_MCP_MAX_CONCURRENT_SCANS8Max subprocess scanners running at once (0 = unlimited)
SAST_MCP_RATE_LIMIT_PER_MIN0Per-client request budget for HTTP transports (0 = disabled)
SAST_MCP_SCANNER_TIMEOUTS(none)JSON map of per-scanner timeout overrides, e.g. {"trivy":600}
SAST_MCP_API_KEY(none)API key for remote (HTTP) authentication
SAST_MCP_JWT_SECRET(none)HMAC-SHA256 secret for JWT bearer auth (scopes enforced per tool)
DEFECTDOJO_URL(none)Base URL of a DefectDojo instance (for upload_to_defectdojo)
DEFECTDOJO_API_KEY(none)DefectDojo API v2 token
GITHUB_TOKEN(none)Token with security_events: write (SARIF upload + PR comments)
GITLAB_TOKEN(none)GitLab token with api scope (for comment_on_pr)
GITLAB_URLhttps://gitlab.comGitLab base URL (self-managed override)
SLACK_WEBHOOK_URL(none)Slack incoming webhook (for notify_slack)
TEAMS_WEBHOOK_URL(none)Microsoft Teams incoming webhook (for notify_teams)
JIRA_URL / JIRA_EMAIL / JIRA_API_TOKEN(none)Jira Cloud credentials (for create_jira_issue)

Operational endpoints (HTTP transports)

When running with --transport streamable-http, the server exposes:

EndpointPurpose
GET /healthLiveness probe β€” 200 with version while the process is up
GET /readyReadiness probe β€” lists installed scanners (503 if none)
GET /metricsPrometheus text exposition (tool calls, scan durations, findings)

Incremental scans

scan_vulnerabilities and scan_all accept use_cache=true: the server fingerprints the target's files and reuses the previous scan when nothing has changed, so repeated scans in a session are fast.


Development

# Clone and install with dev dependencies
git clone https://github.com/Skyrxin/sast-mcp-server.git
cd sast-mcp-server
pip install -e ".[dev]"

# Run tests
pytest tests/ -v

# Lint
ruff check sast_mcp_server/

# Run locally
python -m sast_mcp_server

Project Structure

sast_mcp_server/
β”œβ”€β”€ __init__.py          # Package version
β”œβ”€β”€ __main__.py          # python -m entry point
β”œβ”€β”€ server.py            # FastMCP server with all tools + /health /ready /metrics
β”œβ”€β”€ models.py            # Typed data models (Finding, Severity, etc.)
β”œβ”€β”€ config.py            # Central validated settings (env-driven)
β”œβ”€β”€ sarif.py             # SARIF 2.1.0 export and parsing
β”œβ”€β”€ aggregator.py        # Multi-scanner parallel execution + deduplication
β”œβ”€β”€ cache.py             # Scan caching, baselines, comparison, fingerprints
β”œβ”€β”€ auth.py              # JWT / API key authentication for remote transports
β”œβ”€β”€ metrics.py           # In-process Prometheus metrics
β”œβ”€β”€ ratelimit.py         # Per-client token-bucket rate limiting
β”œβ”€β”€ prompts.py           # MCP prompt templates (security workflows)
β”œβ”€β”€ resources.py         # MCP resources (sast:// dashboards and metadata)
β”œβ”€β”€ scanners/
β”‚   β”œβ”€β”€ base.py          # Abstract scanner base class
β”‚   β”œβ”€β”€ factory.py       # Scanner registry and factory
β”‚   β”œβ”€β”€ bandit.py        # Bandit (Python)
β”‚   β”œβ”€β”€ njsscan.py       # njsscan (JavaScript)
β”‚   β”œβ”€β”€ bearer.py        # Bearer (multi-language)
β”‚   β”œβ”€β”€ semgrep.py       # Semgrep (30+ languages)
β”‚   β”œβ”€β”€ trivy.py         # Trivy (CVEs, secrets, IaC)
β”‚   β”œβ”€β”€ codeql.py        # CodeQL (deep semantic SAST)
β”‚   β”œβ”€β”€ checkov.py       # Checkov (IaC policies)
β”‚   β”œβ”€β”€ gitleaks.py      # Gitleaks (git history secret scanning)
β”‚   β”œβ”€β”€ osv_scanner.py   # OSV-Scanner (SCA / dependency CVEs)
β”‚   β”œβ”€β”€ grype.py         # Grype (SCA + container image scanning)
β”‚   └── zap.py           # OWASP ZAP (DAST via Docker)
β”œβ”€β”€ enrichment/
β”‚   β”œβ”€β”€ ast_context.py   # AST-aware code context extraction
β”‚   β”œβ”€β”€ git_diff.py      # Git diff for incremental scanning
β”‚   β”œβ”€β”€ ignore_manager.py # Finding ignore list management
β”‚   β”œβ”€β”€ patch_prompt.py  # Builds LLM prompts to fix a cached finding
β”‚   └── patch_apply.py   # Applies/reverts agent-generated diffs via `git apply`
β”œβ”€β”€ reporting/
β”‚   β”œβ”€β”€ sbom.py          # CycloneDX SBOM/VDR (+ optional Syft inventory)
β”‚   β”œβ”€β”€ spdx.py          # SPDX 2.3 SBOM
β”‚   β”œβ”€β”€ vex.py           # CycloneDX VEX statements (triage decisions)
β”‚   β”œβ”€β”€ html.py          # Standalone HTML executive report
β”‚   β”œβ”€β”€ pdf.py           # PDF report (optional [pdf] extra)
β”‚   └── compliance.py    # OWASP / SANS / PCI / CIS mapping
└── integrations/
    β”œβ”€β”€ defectdojo.py    # Upload SARIF to DefectDojo
    β”œβ”€β”€ github.py        # GitHub Code Scanning + PR comments
    β”œβ”€β”€ gitlab.py        # GitLab MR comments
    β”œβ”€β”€ slack.py / teams.py  # Webhook notifications
    └── jira.py          # Create Jira issues

License

MIT

Related MCP Servers

13bm/GhidraMCP

🐍 β˜• 🏠 - MCP server for integrating Ghidra with AI assistants. This plugin enables binary analysis, providing tools for function inspection, decompilation, memory exploration, and import/export analysis via the Model Context Protocol.

πŸ”’ Security1 views
123Ergo/unphurl-mcp

πŸ“‡ ☁️ - URL intelligence for AI agents. 13 tools for security signals and data quality: redirect behaviour, brand impersonation detection, domain age, SSL validation, parked detection, URL structural analysis, DNS enrichment.

πŸ”’ Security0 views
82ch/MCP-Dandan

🐍 πŸ“‡ 🏠 🍎 πŸͺŸ 🐧 - Real-time security framework for MCP servers that detects and blocks malicious AI agent behavior by analyzing tool call patterns and intent across multiple threat detection engines.

πŸ”’ Security0 views
9hannahnine-jpg/arc-gate-mcp

🐍 - Runtime governance for MCP tool calls. Blocks prompt injection and capability abuse before tool results reach your agent.

πŸ”’ Security0 views

Engagement

Views
0
Installs
0
Upvotes
0

Views and upvotes are unique per visitor network (hashed IP). Installs count copy actions.

Status

Health: Not checked yet

We have not completed a health check for this listing yet.

No check timestamp yet.

Unclaimed listing (imported or pending owner verification). Claim it β†’
β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Claim this listing

Promote this listing

Optional paid placement. Free listings stay free forever.

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.