VirusTotal MCP Server

get_url_report

Get a comprehensive URL analysis report including security scan results and key relationships (communicating files, contacted domains/IPs, downloaded files, redirects, threat actors). Returns both the basic security analysis and automatically fetched relationship data.

Input Schema

NameRequiredDescriptionDefault
urlYesThe URL to analyze

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "url": { "description": "The URL to analyze", "format": "uri", "type": "string" } }, "required": [ "url" ], "type": "object" }