VirusTotal MCP Server

get_domain_report

Get a comprehensive domain analysis report including DNS records, WHOIS data, and key relationships (SSL certificates, subdomains, historical data). Optionally specify which relationships to include in the report. Returns both the basic analysis and relationship data.

Input Schema

NameRequiredDescriptionDefault
domainYesDomain name to analyze
relationshipsNoOptional array of relationships to include in the report

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "domain": { "description": "Domain name to analyze", "pattern": "^([a-zA-Z0-9-]+\\.)+[a-zA-Z]{2,}$", "type": "string" }, "relationships": { "description": "Optional array of relationships to include in the report", "items": { "enum": [ "caa_records", "cname_records", "comments", "communicating_files", "downloaded_files", "historical_ssl_certificates", "historical_whois", "immediate_parent", "mx_records", "ns_records", "parent", "referrer_files", "related_comments", "related_references", "related_threat_actors", "resolutions", "soa_records", "siblings", "subdomains", "urls", "user_votes" ], "type": "string" }, "type": "array" } }, "required": [ "domain" ], "type": "object" }