Sign In

@supernova123/security-scanner-mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@supernova123/security-scanner-mcp-server

Multi-engine container & system vulnerability scanning for AI agents. Wraps Trivy and Grype with cross-engine validation, SBOM generation, and IaC misconfiguration scanning.

latest
Source
npmnpm
Version
0.1.1
Version published
Maintainers
1
Created
Source

Security Scanner MCP Server

npm License: MIT Glama

Multi-engine container & system vulnerability scanning for AI agents. Wraps Trivy and Grype with cross-engine validation, SBOM generation, and IaC misconfiguration scanning.

Why This Exists

Most security MCP servers wrap a single scanner. This one wraps two — Trivy (Aqua Security) and Grype (Anchore) — and runs them against the same target to surface what each engine catches alone. Different vulnerability databases + different detection logic = broader coverage.

Key differentiator: No other MCP server offers multi-engine cross-validation.

Features

  • 15 tools covering vulnerability scanning, SBOM generation, IaC checks, and database management
  • Cross-engine validation — run Trivy + Grype on the same image and see what each catches alone
  • MIT licensed — no AGPL encumbrance (unlike @aikidosec/mcp)
  • npm-native — install via npx, works with Claude Desktop, Cursor, and any MCP client
  • No cloud account required — runs locally against Docker daemon or filesystem

Quick Start

🚀 New here? See the Quick Start Guide — get scanning in under 5 minutes.

Prerequisites

Install at least one scanning engine:

# Trivy (recommended)
curl -sfL https://raw.githubusercontent.com/aquasecurity/trivy/main/contrib/install.sh | sh -s -- -b /usr/local/bin

# Grype (for cross-validation)
curl -sSfL https://raw.githubusercontent.com/anchore/grype/main/install.sh | sh -s -- -b /usr/local/bin

Claude Desktop / Cursor

Add to your MCP configuration:

{
  "mcpServers": {
    "security-scanner": {
      "command": "npx",
      "args": ["-y", "@supernova123/security-scanner-mcp-server"]
    }
  }
}

Standalone

npx @supernova123/security-scanner-mcp-server

Tools

#ToolEngineDescription
1scan_imageTrivyScan Docker image for vulnerabilities
2scan_image_grypeGrypeSame target via Grype (cross-validation)
3vulnerability_reportTrivyDetailed report with remediation
4scan_filesystemTrivyLocal dir/file vulnerability + misconfig scan
5scan_filesystem_grypeGrypeCross-engine filesystem scan
6scan_repositoryTrivyRemote git repo scan
7scan_remote_imageGrypePull from registry directly (no Docker daemon)
8scan_purlGrypeSingle Package URL vulnerability lookup
9scan_sbomTrivyScan SBOM file for vulnerabilities
10generate_sbomTrivyGenerate CycloneDX/SPDX SBOM
11scan_configTrivyIaC misconfiguration scan
12cross_validateBothRun both engines, surface divergence
13db_statusGrypeCheck vulnerability DB status
14update_dbGrypeUpdate vulnerability database
15get_versionBothEngine version + availability

Cross-Validation Example

The cross_validate tool runs both Trivy and Grype on the same Docker image and compares results:

{
  "combined_summary": {
    "total_unique_cves": 47,
    "critical": 2,
    "high": 8,
    "medium": 23,
    "low": 14
  },
  "divergence": {
    "only_in_trivy_count": 5,
    "only_in_grype_count": 3,
    "severity_mismatches": 2,
    "only_in_trivy": ["CVE-2023-1234", ...],
    "only_in_grype": ["CVE-2023-5678", ...]
  },
  "insight": "Cross-validation found 5 CVEs only in Trivy and 3 only in Grype. Using both engines gives broader coverage than either alone."
}

Competitive Landscape

PackageEngineLicenseWeekly Downloads
@aikidosec/mcpCloud APIAGPL-3.0~11,800
@paretools/securityTrivy + SemgrepMIT~75
@supernova123/security-scanner-mcp-serverTrivy + GrypeMITTBD
aquasecurity/trivy-mcpTrivy (Go plugin)MITN/A (not npm)
anchore/grype-mcpGrype (Python)Apache-2.0N/A (not npm)

Development

git clone https://github.com/friendlygeorge/security-scanner-mcp-server.git
cd security-scanner-mcp-server
npm install
npm run build
npm test

License

MIT — see LICENSE

Keywords

mcp

FAQs

Package last updated on 23 Jun 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts