Fastmcp Threatintel MCP Server

A comprehensive **Model Context Protocol (MCP)** server that provides enterprise-grade threat intelligence capabilities through natural language AI

Local serverstdioPython

What is the Fastmcp Threatintel MCP server?

Fastmcp Threatintel MCP server is a locally run integration for AI assistants that speak the Model Context Protocol. A comprehensive Model Context Protocol (MCP) server that provides enterprise-grade threat intelligence capabilities through natural language AI prompts. Analyze IPs, domains, URLs, and file hashes across multiple threat intelligence.

Setting it up

The server ships on PyPI as fastmcp-threatintel, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

What the assistant can call

Once Fastmcp Threatintel is connected, these are the calls the assistant has available:

  • Service — Status
  • VirusTotal — Required
  • OTX — Required
  • AbuseIPDB — Optional
  • IPinfo — Optional

Configuration and credentials

You will need 4 environment variables: VIRUSTOTAL_API_KEY, OTX_API_KEY, ABUSEIPDB_API_KEY, IPINFO_API_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the fastmcp threatintel mcp server does with a few real requests.

Choosing this one

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Fastmcp Threatintel's toolset — Service, VirusTotal, OTX and 2 more — is a fair guide to whether it matches your workflow. It is maintained by 4R9UN; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Available tools

ToolWhat it does
ServiceStatus
VirusTotalRequired
OTXRequired
AbuseIPDBOptional
IPinfoOptional

How to install the Fastmcp Threatintel MCP server

{
  "mcpServers": {
    "threatintel": {
      "command": "threatintel",
      "args": ["server", "--port", "8001"],
      "env": {
        "VIRUSTOTAL_API_KEY": "your_key",
        "OTX_API_KEY": "your_key"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
VIRUSTOTAL_API_KEYCredential the server authenticates with.Yes
OTX_API_KEYCredential the server authenticates with.Yes
ABUSEIPDB_API_KEYCredential the server authenticates with.Yes
IPINFO_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Fastmcp Threatintel to Service.
  • Use Fastmcp Threatintel to VirusTotal.
  • Use Fastmcp Threatintel to OTX.

Frequently asked questions

It connects Fastmcp Threatintel to MCP-compatible AI assistants such as Claude and Cursor, exposing 5 tools (Service, VirusTotal, OTX, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Fastmcp Threatintel directly.