Skip to content

Repository files navigation

🛡️ Security Advisor

An MCP (Model Context Protocol) server that orchestrates comprehensive security scans — SAST, SCA, and IaC — across any project and produces a unified SARIF 2.1.0 report consumable by GitHub Advanced Security, VS Code, and other industry-standard tooling.

Project site: GitHub Pages documentation


Overview

Security Advisor exposes seven MCP tools that an AI assistant (e.g., Claude, Gemini) can invoke to analyse a codebase:

Tool Description
security_sast_skill Static Application Security Testing via Semgrep
security_sca_skill Software Composition Analysis via Trivy (dependency vulnerabilities)
security_iac_scan_skill Infrastructure-as-Code misconfiguration scan via Trivy (Terraform, K8s, Docker)
security_container_skill Container image security scan via DockerScan v2.0 (CIS benchmark, secrets, CVEs, supply-chain, runtime)
security_gemini_code_review_skill AI-powered code review via Gemini CLI — reviews branch diff and returns vulnerability_schema.json-compatible JSON
security_advisor_skill Master skill — runs SAST, SCA, IaC and optional container scans in parallel, exports a unified SARIF report
security_publish_to_vulnerability_manager_skill Runs SAST/SCA/IaC/container scans, converts findings to vulnerability_schema.json payload, and uploads to Vulnerability Manager
security_gemini_publish_to_vulnerability_manager_skill Runs Gemini code review, converts findings to vulnerability_schema.json payload, and uploads to Vulnerability Manager

How It Works

AI Assistant
    │
    ├─► security_advisor_skill(project_path, image="nginx:latest")
    │        │
    │        ├─► security_sast_skill          →  Semgrep JSON
    │        ├─► security_sca_skill            →  Trivy vuln JSON
    │        ├─► security_iac_scan_skill       →  Trivy config JSON
    │        └─► security_container_skill      →  DockerScan JSON  (optional)
    │                     │
    │                     ▼
    │             build_sarif_report()          ← pkg/sarif_report.py
    │                     │
    │                     ▼
    │         <project_path>/Security-Advisor-Report.sarif
    │
    └─► security_gemini_code_review_skill(path)
             │
             └─► gemini CLI (--yolo, -e code-review, --output-format json)
                           │
                           ▼
               vulnerability_schema.json-compatible JSON payload

Prerequisites

Ensure the following are installed and available on your PATH before running Security Advisor.

System Tools

Tool Version Install
Python ≥ 3.14 python.org
uv latest curl -LsSf https://astral.sh/uv/install.sh | sh
Semgrep latest pip install semgrep or brew install semgrep
Trivy latest brew install trivy or see trivy.dev
DockerScan v2.0+ See DockerScan Installation below
Gemini CLI latest npm install -g @google/gemini-cli or see Gemini CLI docs

Verify Prerequisites

python3 --version   # Should be 3.14+
uv --version
semgrep --version
trivy --version
dockerscan --version
gemini --version

DockerScan Installation

DockerScan v2.0 is a single Go binary — no Python/pip required.

# macOS (Apple Silicon)
curl -L https://github.com/cr0hn/dockerscan/releases/latest/download/dockerscan-darwin-arm64 -o dockerscan
chmod +x dockerscan && sudo mv dockerscan /usr/local/bin/

# macOS (Intel)
curl -L https://github.com/cr0hn/dockerscan/releases/latest/download/dockerscan-darwin-amd64 -o dockerscan
chmod +x dockerscan && sudo mv dockerscan /usr/local/bin/

# Linux (amd64)
curl -L https://github.com/cr0hn/dockerscan/releases/latest/download/dockerscan-linux-amd64 -o dockerscan
chmod +x dockerscan && sudo mv dockerscan /usr/local/bin/

First-time setup — download the NVD CVE database (~30 MB, updated daily) before scanning:

dockerscan update-db

Project Structure

security-advisor/
├── main.py               # MCP server entry point — exposes all scan tools
├── pkg/
│   ├── __init__.py
│   ├── sarif_report.py   # SARIF 2.1.0 builder (parses Semgrep + Trivy + DockerScan JSON)
│   └── container_scanner.py  # DockerScan CLI wrapper and output parser
├── pyproject.toml        # Project metadata and dependencies
├── uv.lock               # Locked dependency manifest
├── .python-version       # Pinned Python version (3.14)
└── README.md

Installation

1. Clone the repository

git clone <repository-url>
cd security-advisor

2. Create and activate a virtual environment with uv

uv venv
source .venv/bin/activate   # macOS / Linux
# .venv\Scripts\activate    # Windows

3. Install dependencies

uv pip install -e .

This installs:

  • fastmcp ≥ 3.2.4 — high-level MCP server framework
  • mcp ≥ 1.27.1 — Model Context Protocol Python SDK

Development

Running the MCP Server Locally

uv run main.py

Or via the standard Python entrypoint:

python main.py

The server starts and listens for MCP tool calls over stdio (default FastMCP transport).

Running with fastmcp dev mode

fastmcp dev main.py

This launches an interactive MCP inspector at http://localhost:6274 so you can test tools manually.


MCP Client Configuration

To connect Security Advisor to an AI assistant, add it to your MCP client config.

Claude Desktop (claude_desktop_config.json)

{
  "mcpServers": {
    "security-advisor": {
      "command": "uv",
      "args": [
        "--directory",
        "/absolute/path/to/security-advisor",
        "run",
        "main.py"
      ]
    }
  }
}

Gemini / Antigravity (.gemini/settings.json)

{
  "mcpServers": {
    "security-advisor": {
      "command": "uv",
      "args": [
        "--directory",
        "/absolute/path/to/security-advisor",
        "run",
        "main.py"
      ]
    }
  }
}

Tip: Replace /absolute/path/to/security-advisor with the actual path on your machine.


Usage

Via an AI Assistant

Once the MCP server is connected, instruct your assistant:

Run a full security analysis on /path/to/my-project

The assistant will invoke security_advisor_skill, which:

  1. Runs Semgrep SAST, Trivy SCA, and Trivy IaC scans in parallel
  2. Aggregates all findings into a SARIF 2.1.0 document
  3. Writes the report to <project_path>/Security-Advisor-Report.sarif
  4. Returns a human-readable summary

To also scan a Docker container image, provide the image parameter:

Run a full security analysis on /path/to/my-project and scan the nginx:latest container image

The assistant will invoke security_advisor_skill with image="nginx:latest", running DockerScan in parallel and including its findings in the unified SARIF report.

Individual Tools

You can also invoke individual scan tools:

Run a SAST scan on /path/to/my-project
Run an SCA scan on /path/to/my-project
Run an IaC scan on /path/to/my-project
Scan the nginx:latest Docker image for security issues

Gemini Code Review

Use security_gemini_code_review_skill to run an AI-powered code review against the current branch's diff:

Run a Gemini code review on /path/to/my-project

The tool executes the Gemini CLI in non-interactive mode:

gemini -p 'activate the code review skill and review code changes in current branch' \
       --yolo -e code-review --output-format json

It parses the JSON output and returns a vulnerability_schema.json-compatible payload:

{
  "vulnerabilities": [
    {
      "title": "Sensitive authentication tokens are being written directly to application logs",
      "description": "[SECURITY] Sensitive authentication tokens are being written directly...",
      "severity": "CRITICAL",
      "status": "OPEN",
      "affected_component": "src/services/authService.js:42",
      "remediation": "Remove the console.error statement that explicitly dumps the raw token...",
      "source_tool": "Gemini Code Review"
    }
  ]
}

Publish Gemini Code Review to Vulnerability Manager

Use security_gemini_publish_to_vulnerability_manager_skill to run the Gemini review and upload findings in one step:

Run a Gemini code review on /path/to/my-project and publish findings to Vulnerability Manager
organization=Acme
project=Payments
service=checkout-api
version=v1.4.2

The action will:

  1. Run security_gemini_code_review_skill to collect findings from the current branch diff.
  2. Convert findings into vulnerability_schema.json-compatible JSON.
  3. Resolve or create the Organization → Project → Service → Version hierarchy.
  4. Upload the payload to /api/versions/{version_id}/vulnerabilities/upload.

Publish Scan Results To Vulnerability Manager

Use the dedicated publish action when you want Security Advisor to both scan and upload findings into Vulnerability Manager:

Run Security Advisor on /path/to/my-project and publish results to Vulnerability Manager
organization=Acme
project=Payments
service=checkout-api
version=v1.4.2

The action will:

  1. Run SAST, SCA, IaC (and optional container) scans.
  2. Convert findings into vulnerability_schema.json-compatible JSON.
  3. Resolve or create the Organization → Project → Service → Version hierarchy.
  4. Upload the payload to /api/versions/{version_id}/vulnerabilities/upload.

Optional parameters:

Authentication

Vulnerability Manager now requires JWT authorization for API requests.

Use these environment variables to control the shared basic-auth login credentials and token signing secret:

  • SECURITY_ADVISOR_AUTH_USERNAME - login username, defaults to admin
  • SECURITY_ADVISOR_AUTH_PASSWORD - login password, defaults to admin
  • SECURITY_ADVISOR_JWT_SECRET - JWT signing secret, defaults to change-me-in-production
  • SECURITY_ADVISOR_ACCESS_TOKEN_EXPIRE_MINUTES - token lifetime, defaults to 60

The MCP publish action logs in with the basic-auth credentials, receives a JWT from /api/auth/token, and uses that bearer token for all manager API calls.

The first admin account is bootstrapped from these same credentials on startup if no admin user exists yet.

User Management

Admin users can manage users through the API:

  • GET /api/users
  • POST /api/users
  • GET /api/users/{user_id}
  • PUT /api/users/{user_id}
  • DELETE /api/users/{user_id}

User records include name, email, username, password, role, and api_key. Passwords and API keys are stored hashed; the raw API key is returned when a user is created or regenerated.

  • vulnerability_manager_url (default: http://127.0.0.1:8000)
  • image (for optional container scan)

SARIF Report

The exported Security-Advisor-Report.sarif is a valid SARIF 2.1.0 document containing up to four runs:

Run Tool Findings Present when
runs[0] Semgrep SAST code-level issues Always
runs[1] Trivy SCA dependency vulnerabilities Always
runs[2] Trivy IaC misconfigurations Always
runs[3] DockerScan Container image findings When image is provided

Severity Mapping

Tool Severity SARIF Level
CRITICAL, HIGH error
MEDIUM warning
LOW, INFO note

Viewing the Report

# Upload to GitHub Code Scanning
gh api \
  --method POST \
  /repos/{owner}/{repo}/code-scanning/sarifs \
  --field commit_sha=$(git rev-parse HEAD) \
  --field ref=$(git symbolic-ref HEAD) \
  --field sarif=@Security-Advisor-Report.sarif

Dependencies

Package Version Purpose
fastmcp ≥ 3.2.4 MCP server framework
mcp ≥ 1.27.1 Model Context Protocol Python SDK

External CLI tools (not Python packages):

Tool Purpose
semgrep SAST scanning
trivy SCA + IaC scanning
dockerscan Container image security scanning (CIS, secrets, CVEs, supply-chain, runtime)
gemini AI-powered code review of branch diff (Gemini CLI)

Contributing

  1. Fork the repository and create a feature branch
  2. Make your changes and ensure the server starts cleanly (uv run main.py)
  3. Test manually using fastmcp dev main.py
  4. Open a pull request with a clear description of the changes

License

This project is licensed under the MIT License.

About

An oss tools based MCP server framework to analyze source code for security vulnerabilities. It runs SAST, SCA, DAST, and IaC inspection on the repository contents.

Topics

Resources

Stars

1 star

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages