VirusTotal MCP Server
by BurtTheCoder
get_ip_report
Get a comprehensive IP address analysis report including geolocation, reputation data, and key relationships (communicating files, historical certificates/WHOIS, resolutions). Returns both the basic analysis and automatically fetched relationship data.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ip | Yes | IP address to analyze |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"ip": {
"anyOf": [
{
"format": "ipv4"
},
{
"format": "ipv6"
}
],
"description": "IP address to analyze",
"type": "string"
}
},
"required": [
"ip"
],
"type": "object"
}