VirusTotal MCP Server

get_url_relationship

Query a specific relationship type for a URL with pagination support. Choose from 17 relationship types including analyses, communicating files, contacted domains/IPs, downloaded files, graphs, referrers, redirects, and threat actors. Useful for detailed investigation of specific relationship types.

Input Schema

NameRequiredDescriptionDefault
cursorNo
limitNo
relationshipYesType of relationship to query
urlYesThe URL to get relationships for

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "cursor": { "type": "string" }, "limit": { "default": 10, "maximum": 40, "minimum": 1, "type": "number" }, "relationship": { "description": "Type of relationship to query", "enum": [ "analyses", "comments", "communicating_files", "contacted_domains", "contacted_ips", "downloaded_files", "graphs", "last_serving_ip_address", "network_location", "referrer_files", "referrer_urls", "redirecting_urls", "redirects_to", "related_comments", "related_references", "related_threat_actors", "submissions" ], "type": "string" }, "url": { "description": "The URL to get relationships for", "format": "uri", "type": "string" } }, "required": [ "url", "relationship" ], "type": "object" }