Skip to main content
Glama
Antobh36

Threat Intel MCP Server

by Antobh36

Threat Intel MCP Server

This MCP server is designed so an agent can use various threat intelligence platforms like VirusTotal, Shodan, and more. It is still a work in progress. So far I have made 17 tools for VirusTotal, Shodan, GreyNoise, and urlscan.io. AbuseIPDB is written but commented out, because I couldn't get my hands on an API key. GreyNoise has 2 functions: one for the community API, and one for the enterprise API if you have a trial. Only the community one is registered as a tool. There are also 3 "enrich" tools that ask every provider at once and merge the answers, for an IP, a URL, or a file.

Running it

Copy .env.example to .env and fill in whichever keys you have: VT_API_KEY, URLSCAN_API_KEY, SHODAN_API_KEY. None of them are mandatory, you just get fewer tools. GREYNOISE_KEY is optional too because the community API works without one.

Real environment variables take priority over .env, so an MCP client can pass the keys in its own config instead.

Locally, over stdio, which is what Claude Desktop and the IDE extensions use:

pip install -r requirements.txt
python threat_intel_server.py

With Docker, over HTTP on port 8000:

docker build -t threat-intel-mcp .
docker run --rm --env-file .env -p 8000:8000 threat-intel-mcp

Add -i -e MCP_TRANSPORT=stdio if you want the container to speak stdio instead.

NOTES:

  • This project is mostly for learning purposes.

  • The project is a work in progress, so some functions may not work as intended.

  • Each platform has a class in providers.py that holds its base URL, its authentication, and its rate limit.

  • Keys are optional one at a time. If a key is missing, that platform's tools are simply not registered and the rest of the server still runs, so you can start with one key and add the others later. The server prints to stderr which tools it skipped.

  • With no keys at all you still get 2 tools, because the GreyNoise community API works without one.

  • Never commit your .env. It is in .gitignore and .dockerignore, so the keys stay out of the repo and out of the image.

  • There is a Dockerfile now, but I haven't published the image anywhere until I am satisfied with the project.

F
license - not found
-
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • F
    license
    -
    quality
    D
    maintenance
    A Model Context Protocol server that performs third-party threat intelligence enrichment for various observables (IP addresses, domains, URLs, emails) using services like VirusTotal, Shodan, and AbuseIPDB.
  • A
    license
    A
    quality
    A
    maintenance
    An MCP server that extracts Indicators of Compromise (IoCs) from unstructured text and checks their reputation across multiple threat intelligence services. It enables real-time analysis of IPs, domains, hashes, and URLs, providing enriched context for security workflows within LLMs.
    5
    19
    MIT
  • A
    license
    -
    quality
    D
    maintenance
    An MCP server that integrates ThreatBook's threat intelligence API, offering 15 specialized tools for security analysis. It enables AI models to perform IP reputation checks, domain investigations, file sandbox analysis, and vulnerability intelligence lookups.
    49
    MIT
  • A
    license
    D
    quality
    D
    maintenance
    A comprehensive MCP server providing tools for IP, domain, email, and image-based open-source intelligence. It integrates services like Shodan, VirusTotal, and HaveIBeenPwned to facilitate advanced security research and data gathering.
    56
    20
    ISC

View all related MCP servers

Related MCP Connectors

  • Pulsedive MCP — threat-intelligence IOC enrichment (pulsedive.com)

  • ThreatFox MCP — abuse.ch indicator-of-compromise feed (free, key required)

  • VirusTotal MCP — file / URL / domain / IP reputation (BYO key)

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Antobh36/threat-intel-mcp-servers'

If you have feedback or need assistance with the MCP directory API, please join our Discord server