Google Antigravity Directory

The #1 directory for Google Antigravity prompts, rules, workflows & MCP servers. Optimized for Gemini 3 agentic development.

Resources

PromptsMCP ServersAntigravity RulesGEMINI.md GuideBest Practices

Company

Submit PromptAntigravityAI.directory

Popular Prompts

Next.js 14 App RouterReact TypeScriptTypeScript AdvancedFastAPI GuideDocker Best Practices

Legal

Privacy PolicyTerms of ServiceContact Us
Featured on FazierFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowAI ToolzShinyLaunchMillion Dot HomepageSolver ToolsFeatured on FazierFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowAI ToolzShinyLaunchMillion Dot HomepageSolver Tools

© 2026 Antigravity AI Directory. All rights reserved.

The #1 directory for Google Antigravity IDE

This website is not affiliated with, endorsed by, or associated with Google LLC. "Google" and "Gemini" are trademarks of Google LLC.

Antigravity AI Directory
PromptsMCPBest PracticesUse CasesLearn
Home
MCP Servers
Trivy MCP
🔬

Trivy MCP MCP Server

Comprehensive security scanner for containers.

trivyscannervulnerabilitiescontainers

About

## Trivy MCP Server: Comprehensive Vulnerability Scanner The **Trivy MCP Server** integrates Aqua Security's all-in-one scanner into Google Antigravity, enabling vulnerability detection in containers, filesystems, Git repositories, and Kubernetes clusters with detailed CVE analysis. ### Why Trivy MCP? - **All-in-one scanner** - Containers, filesystems, repos, and more - **Fast and accurate** - Quick scans with minimal false positives - **CI/CD friendly** - Easy integration into build pipelines - **Offline capable** - Download vulnerability DB for air-gapped environments - **Multiple formats** - Output in JSON, table, SARIF, and more ### Key Features #### 1. Container Scanning ```python # Scan container image scan = await mcp.call("trivy", "image", { "image": "myapp:latest", "severity": ["CRITICAL", "HIGH"], "ignore_unfixed": True }) print(f"Vulnerabilities: {scan[\"total\"]}") for vuln in scan["vulnerabilities"]: print(f"[{vuln[\"severity\"]}] {vuln[\"vulnerability_id\"]}") print(f" Package: {vuln[\"pkg_name\"]}@{vuln[\"installed_version\"]}") print(f" Fix: {vuln[\"fixed_version\"]}") ``` #### 2. Filesystem Scanning ```python # Scan project directory fs_scan = await mcp.call("trivy", "filesystem", { "path": "/app", "scanners": ["vuln", "secret", "misconfig"], "skip_dirs": ["node_modules/.cache"] }) # Check for secrets for secret in fs_scan.get("secrets", []): print(f"Secret found: {secret[\"category\"]}") print(f" File: {secret[\"target\"]}:{secret[\"line\"]}") ``` #### 3. Kubernetes Scanning ```python # Scan running cluster k8s_scan = await mcp.call("trivy", "kubernetes", { "context": "production", "namespace": "default", "report": "all" }) for resource in k8s_scan["results"]: print(f"{resource[\"kind\"]}/{resource[\"name\"]}") for issue in resource["vulnerabilities"]: print(f" - {issue[\"id\"]}: {issue[\"severity\"]}") ``` #### 4. SBOM Generation ```python # Generate software bill of materials sbom = await mcp.call("trivy", "sbom", { "image": "myapp:latest", "format": "cyclonedx" }) # Scan existing SBOM sbom_scan = await mcp.call("trivy", "sbom_scan", { "sbom_path": "/path/to/sbom.json" }) ``` ### Configuration ```json { "mcpServers": { "trivy": { "command": "npx", "args": ["-y", "@anthropic/mcp-trivy"], "env": { "TRIVY_CACHE_DIR": "/var/cache/trivy", "TRIVY_DB_REPOSITORY": "ghcr.io/aquasecurity/trivy-db" } } } } ``` ### Use Cases **CI/CD Gates**: Block deployments with critical vulnerabilities. **Container Registry**: Scan images before pushing to production. **Compliance**: Generate SBOM for software supply chain requirements. **Runtime Monitoring**: Continuously scan running Kubernetes clusters. The Trivy MCP Server provides comprehensive security scanning for modern infrastructure.

Installation

Configuration
{
  "mcpServers": {
    "trivy": {}
  }
}

How to Use

    Related MCP Servers

    🧰

    Toolhouse MCP

    Universal AI tool platform that equips your AI with production-ready capabilities. Execute code, browse the web, manage files, send emails, and more through a unified MCP interface.

    🔨

    Smithery Registry MCP

    The MCP server registry and discovery platform. Browse, search, and install MCP servers from the community. Find the perfect integrations for your AI development workflow.

    🔍

    MCP Inspector

    Official debugging and testing tool for MCP servers. Inspect server capabilities, test tool calls, validate responses, and debug protocol communication in real-time.

    ← Back to All MCP Servers