VT4AI is a powerful Python wrapper around the VirusTotal API, specifically designed to enhance AI and LLM applications with comprehensive cybersecurity intelligence. It transforms VirusTotal's responses into AI-friendly formats through templating and multiple integration options.
Traditional VirusTotal API responses are often overwhelming for AI applications, containing massive amounts of data that can confuse LLMs and waste tokens. VT4AI solves this by:
- 🧠 AI-Optimized Responses: filtering and templating system that presents only relevant data
- 🔧 Multiple Interfaces: CLI, MCP server for LLM agents, and REST API for flexible integration
- 🎨 Format Flexibility: JSON, Markdown, XML, and raw formats to suit any use case
- Pre-configured templates for common AI use cases
- Custom template support for specific requirements
- Attribute filtering to reduce noise and focus on relevant data
- CLI Tool: Direct command-line access for scripts and automation
- MCP Server: Native integration with LLM agents and AI assistants
- REST API: HTTP endpoints for web applications and microservices
- File analysis (by hash or file path)
- URL scanning and analysis
- Domain reputation checking
- IP address investigation
- File relationship mapping
- Security Analysis in AI Workflows: Integrate threat intelligence into AI-powered security tools
- Automated Threat Hunting: Build intelligent systems that can analyze and correlate security data
- Incident Response Automation: Create AI assistants that can quickly assess threats and provide context
- Research and Development: Streamline security research with AI-friendly data formats
# Install VT4AI
pip install vt4ai
# Set your VirusTotal API key
export VT4AI_API_KEY="your_api_key_here"
# Analyze a file hash
python3 -m vt4ai.cli --hash 275a021bbfb6489e54d471899f7db9d1663fc695ec2fe2a2c4538aabf651fd0f
VT4AI is built with a modular architecture that separates concerns and maximizes flexibility:
┌─────────────────┐ ┌──────────────────┐ ┌─────────────────┐
│ CLI Interface │ │ MCP Server │ │ REST API │
└─────────┬───────┘ └──────────┬───────┘ └─────────┬───────┘
│ │ │
│ └──────────┬───────────┘
│ │
│ ┌─────────────▼─────────────┐
│ │ VTService │
│ └─────────────┬─────────────┘
│ │
└────────────────────┬─────────────┘
│
┌─────────────▼───────────┐
│ VT4AI Client │
│ (Core Library) │
└─────────────┬───────────┘
│
┌─────────────▼───────────┐
│ Template System │
│ (Filtering & Formatting)│
└─────────────┬───────────┘
│
┌─────────────▼───────────┐
│ VirusTotal API │
│ (vt-py) │
└─────────────────────────┘