mcp server static vulnerability scanning via natural-language analysis
Connects to live MCP servers using the MCPScanner class, retrieves tool/prompt/resource descriptions and configurations, and submits natural-language content to the Invariant analysis API for vulnerability detection. Uses a two-stage pipeline: MCP client layer establishes connections and enumerates server capabilities, then the analysis pipeline extracts and redacts sensitive data before remote submission for LLM-based threat detection.
Unique: Targets natural-language attack vectors (prompt injection, tool poisoning, toxic flows) specific to MCP infrastructure by analyzing tool descriptions and configurations rather than code; integrates with Invariant API for LLM-based semantic threat detection rather than pattern matching
vs alternatives: Detects MCP-specific supply chain attacks (cross-origin toxic flows) that generic SAST tools miss because it understands agent workflow semantics and tool composition patterns
dynamic mcp traffic interception and guardrailing via proxy gateway
Injects the Invariant Gateway into MCP client configurations to intercept live MCP traffic at runtime without modifying agent code. The proxy command rewrites client configuration files to route all MCP calls through a FastAPI-based mcp_scan_server that validates requests/responses against security policies before forwarding to actual MCP servers. Implements real-time policy enforcement with session-based state tracking and configurable guardrails.
Unique: Implements transparent MCP traffic interception via configuration rewriting rather than code instrumentation; uses session-based state tracking to enforce stateful policies (e.g., preventing toxic tool chains across multiple calls) and integrates Invariant Gateway for real-time semantic validation
vs alternatives: Provides runtime guardrailing without modifying agent code or MCP server implementations, enabling security policies to be deployed and updated independently of application releases
session-based state tracking and audit logging
Maintains session-based state for MCP interactions in proxy mode, tracking tool calls, responses, and policy decisions across multiple requests. Stores session state in memory or external persistence layer (Redis, database) and generates comprehensive audit logs of all MCP activity. Enables stateful policy enforcement (e.g., preventing toxic tool chains) and compliance auditing.
Unique: Implements session-based state tracking with support for both in-memory and external persistence; enables stateful policy enforcement and comprehensive audit logging for compliance and incident investigation
vs alternatives: Provides built-in session state management and audit logging without requiring external logging infrastructure, enabling stateful policies and compliance auditing within the proxy
traffic capture and debugging for mcp interactions
Captures and logs all MCP traffic (requests, responses, errors) for debugging and analysis. Provides detailed logging of MCP client-server interactions including payloads, timing, and error details. Supports traffic export in multiple formats (JSON, HAR) for analysis in external tools. Enables troubleshooting of MCP connectivity issues and understanding of agent behavior.
Unique: Implements comprehensive traffic capture with support for multiple export formats (JSON, HAR) and detailed timing/error information; integrates with proxy mode for transparent traffic logging without code changes
vs alternatives: Provides built-in traffic capture and debugging without requiring external packet capture tools, enabling easy analysis of MCP interactions within the scanning framework
mcp configuration file parsing and validation
Parses and validates MCP configuration files in JSON and YAML formats, extracting server definitions, authentication credentials, and transport protocol specifications. Validates configuration syntax and schema, detects missing required fields, and provides detailed error messages for invalid configurations. Supports multiple configuration file formats and locations (environment variables, default paths).
Unique: Implements schema-based validation for MCP configuration files with detailed error messages and support for multiple formats (JSON, YAML); integrates with configuration discovery to support multiple configuration sources
vs alternatives: Provides built-in configuration validation without requiring external schema validation tools, enabling early detection of configuration errors in CI/CD pipelines
agent skill malware and supply chain vulnerability detection
Scans AI agent skills (packaged agent components) for embedded malware payloads, sensitive data handling violations, exposure to untrusted third parties, and hard-coded secrets using static analysis and pattern matching. Analyzes skill code, dependencies, and metadata to identify security risks before skills are integrated into agent systems. Supports both direct skill file scanning and skill registry lookups.
Unique: Combines static code analysis, signature-based malware detection, and dependency auditing specifically for agent skills; integrates with Snyk vulnerability database for known CVEs and provides skill-specific risk scoring beyond generic SAST
vs alternatives: Detects agent skill-specific risks (untrusted third-party access, sensitive data handling in skill context) that generic dependency scanners miss by understanding agent execution models and data flow patterns
offline local vulnerability inspection without remote submission
Provides an offline inspect command that analyzes MCP servers and agent components locally without submitting data to remote APIs. Uses local pattern matching, heuristic analysis, and built-in vulnerability signatures to detect common security issues. Enables security-sensitive organizations to scan infrastructure without external network calls while maintaining privacy of tool descriptions and configurations.
Unique: Implements local-first vulnerability detection using built-in heuristics and pattern signatures, enabling offline scanning without external API dependencies; trades detection accuracy for privacy and network isolation
vs alternatives: Enables security scanning in restricted environments where remote API calls are prohibited, while maintaining the same CLI interface as remote scanning for operational consistency
data redaction and privacy-preserving submission pipeline
Implements automatic data redaction in the scan analysis pipeline to remove or mask sensitive information (credentials, PII, proprietary details) before submitting tool descriptions and configurations to the Invariant analysis API. Uses configurable redaction rules and pattern matching to identify and redact secrets, API keys, email addresses, and other sensitive data. Maintains a redaction audit trail for compliance and debugging.
Unique: Integrates redaction as a first-class pipeline stage before remote submission, using configurable pattern-based rules and maintaining audit trails; enables privacy-preserving analysis without requiring separate data sanitization tools
vs alternatives: Provides built-in privacy controls within the scanning pipeline rather than requiring external data masking tools, reducing operational complexity and ensuring consistent redaction across all scan types
+5 more capabilities