PluginBench
MCP Server
Maintained
MIT

io.github.BurtTheCoder/virustotal MCP Server

io.github.BurtTheCoder/virustotal

What is the io.github.BurtTheCoder/virustotal MCP server?

MCP server for querying VirusTotal API with comprehensive security analysis tools.

How to install io.github.BurtTheCoder/virustotal

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • VIRUSTOTAL_API_KEY
    required
    secret

    Your VirusTotal API key

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "virustotal": {
      "command": "npx",
      "args": [
        "-y",
        "@burtthecoder/mcp-virustotal"
      ],
      "env": {
        "VIRUSTOTAL_API_KEY": "<YOUR_VIRUSTOTAL_API_KEY>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "virustotal": {
      "command": "npx",
      "args": [
        "-y",
        "@burtthecoder/mcp-virustotal"
      ],
      "env": {
        "VIRUSTOTAL_API_KEY": "<YOUR_VIRUSTOTAL_API_KEY>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "virustotal": {
      "command": "npx",
      "args": [
        "-y",
        "@burtthecoder/mcp-virustotal"
      ],
      "env": {
        "VIRUSTOTAL_API_KEY": "<YOUR_VIRUSTOTAL_API_KEY>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "virustotal": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@burtthecoder/mcp-virustotal"
      ],
      "env": {
        "VIRUSTOTAL_API_KEY": "<YOUR_VIRUSTOTAL_API_KEY>"
      }
    }
  }
}
Claude Code
claude mcp add virustotal --env VIRUSTOTAL_API_KEY=<YOUR_VIRUSTOTAL_API_KEY> -- npx -y @burtthecoder/mcp-virustotal

Related MCP servers

MCP server for Shodan API — device search, IP lookup, DNS, and CVE/CPE queries.

141
TypeScript
MIT
View repository →