Sandbox
@FuzzingLabs/mcp-security-hub

MCP servers for security tools in Claude and other clients

This repository bundles many MCP servers that expose offensive security tools to AI assistants. Each server wraps a specific tool or workflow, and the repo ships Docker images, Compose orchestration, example client configs, and tests so you can run them locally.

784 stars98 forksPythonUpdated 5mo ago
Who it's for

Builders who want their AI assistant to scan, analyze, or fuzz targets through MCP tools.

What it delivers

You can ask your assistant to run security tools without leaving your chat or reconfiguring each tool by hand.

What it does

Many security MCP servers

Covers reconnaissance, web security, binary analysis, blockchain, cloud security, code security, secrets detection, exploitation, fuzzing, OSINT, threat intel, Active Directory, and password cracking.

Dockerized server setup

Each MCP server is packaged for Docker, with Compose support for starting one or many servers together.

Claude config examples

Provides example JSON configs for Claude Desktop and project-level `.mcp.json` setup.

Security hardening

Uses non-root containers, minimal images, dropped capabilities, read-only mounts, and Trivy scans.

Build and test scripts

Includes scripts to set up, health-check, and test Docker builds and MCP protocol behavior.

README

Offensive Security MCP Servers

Build Status Security Scan License: MIT MCP Protocol

Production-ready, Dockerized MCP (Model Context Protocol) servers for offensive security tools. Enable AI assistants like Claude to perform security assessments, vulnerability scanning, and binary analysis.

38 MCPs 300+ Tools Docker Ready

Features

  • 38 MCP Servers covering reconnaissance, web security, binary analysis, blockchain security, cloud security, code security, secrets detection, threat intelligence, OSINT, Active Directory, fuzzing, and more
  • 300+ Security Tools accessible via natural language through Claude or other MCP clients
  • Production Hardened - Non-root containers, minimal images, Trivy-scanned
  • Docker Compose orchestration for multi-tool workflows
  • CI/CD Ready with GitHub Actions for automated builds and security scanning

Quick Start

# Clone the repository
git clone https://github.com/FuzzingLabs/mcp-security-hub
cd mcp-security-hub

# Build all MCP servers
docker-compose build

# Start specific servers
docker-compose up nmap-mcp nuclei-mcp -d

# Verify health
docker-compose ps

Configure Claude Desktop / Claude Code

Important: You must build the images first with docker-compose build before using them.

Copy the example config to your Claude Desktop configuration:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "nmap": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "--cap-add=NET_RAW", "nmap-mcp:latest"]
    },
    "nuclei": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "nuclei-mcp:latest"]
    },
    "gitleaks": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "-v", "/path/to/repos:/app/target:ro", "gitleaks-mcp:latest"]
    },
    "radare2": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "-v", "/path/to/binaries:/samples:ro", "radare2-mcp:latest"]
    }
  }
}

For project-level config, copy .mcp.json to your project root. See examples/ for full configuration templates with all MCPs and volume mount patterns.

Available MCP Servers

Reconnaissance (8 servers)

ServerToolsDescription
nmap-mcp8Port scanning, service detection, OS fingerprinting, NSE scripts
shodan-mcp-Wrapper for official Shodan MCP
pd-tools-mcp-Wrapper for ProjectDiscovery tools (subfinder, httpx, katana)
whatweb-mcp5Web technology fingerprinting and CMS detection
masscan-mcp6High-speed port scanning for large networks
zoomeye-mcp-Wrapper for ZoomEye MCP - Cyberspace search engine
networksdb-mcp4IP/ASN/DNS lookups via NetworksDB
externalattacker-mcp6Attack surface mapping with ExternalAttacker

Web Security (6 servers)

ServerToolsDescription
nuclei-mcp7Template-based vulnerability scanning with 8000+ templates
sqlmap-mcp8SQL injection detection and exploitation
nikto-mcp-Wrapper for Nikto MCP web server scanner
ffuf-mcp9Web fuzzing for directories, files, parameters, and virtual hosts
waybackurls-mcp3Fetch historical URLs from Wayback Machine for reconnaissance
burp-mcp-Wrapper for official Burp Suite MCP

Binary Analysis (6 servers)

ServerToolsDescription
radare2-mcp32Wrapper for official radare2-mcp - disassembly, decompilation
binwalk-mcp6Firmware analysis, signature scanning, extraction
yara-mcp7Pattern matching for malware classification
capa-mcp5Capability detection in executables
ghidra-mcp-Wrapper for pyghidra-mcp - Headless AI-powered reverse engineering
ida-mcp-Wrapper for ida-pro-mcp - IDA Pro integration

Blockchain Security (3 servers)

ServerToolsDescription
daml-viewer-mcp1DAML access-control table generation and run tracking
medusa-mcp4High-performance smart contract fuzzer for Solidity
solazy-mcp8Solana sBPF static analysis and reverse engineering

Cloud Security (3 servers)

ServerToolsDescription
trivy-mcp7Container, filesystem, and IaC vulnerability scanning
prowler-mcp6AWS/Azure/GCP security auditing and compliance
roadrecon-mcp6Azure AD enumeration via RoadRecon

Secrets Detection (1 server)

ServerToolsDescription
gitleaks-mcp5Find secrets and credentials in git repos and files

Exploitation (1 server)

ServerToolsDescription
searchsploit-mcp5Exploit-DB search and retrieval

Fuzzing (2 servers)

ServerToolsDescription
boofuzz-mcp4Network protocol fuzzing using Boofuzz
dharma-mcp2Grammar-based test case generation

OSINT (2 servers)

ServerToolsDescription
maigret-mcp-Wrapper for mcp-maigret - Username OSINT across 2500+ sites
dnstwist-mcp-Wrapper for mcp-dnstwist - Typosquatting/phishing detection

Threat Intelligence (2 servers)

ServerToolsDescription
virustotal-mcp-Wrapper for mcp-virustotal - Malware analysis and threat intel
otx-mcp-Wrapper for OTX MCP - AlienVault Open Threat Exchange

Active Directory (1 server)

ServerToolsDescription
bloodhound-mcp75+Wrapper for BloodHound-MCP-AI - AD attack path analysis

Password Cracking (1 server)

ServerToolsDescription
hashcat-mcp-Wrapper for hashcat-mcp - Natural language hash cracking

Code Security (1 server)

ServerToolsDescription
semgrep-mcp7Wrapper for Semgrep MCP - Static code analysis with 5000+ rules

Meta (1 server)

ServerToolsDescription
mcp-scan-Wrapper for mcp-scan - Scan MCP servers for vulnerabilities

Usage Examples

Network Reconnaissance

You: "Scan 192.168.1.0/24 for web servers and identify technologies"

Claude: I'll perform a network scan and technology fingerprinting.
[Uses nmap-mcp to scan ports 80,443,8080]
[Uses whatweb-mcp to fingerprint discovered hosts]

Found 12 web servers:
- 192.168.1.10: Apache 2.4.52, WordPress 6.4
- 192.168.1.15: nginx 1.24, React application
...

Vulnerability Assessment

You: "Check example.com for common vulnerabilities"

Claude: I'll run a vulnerability scan using nuclei templates.
[Uses nuclei-mcp with cves, exposures, and misconfigurations templates]

Found 3 issues:
- HIGH: CVE-2024-1234 - Outdated jQuery version
- MEDIUM: Exposed .git directory
- INFO: Missing security headers

Binary Analysis

You: "Analyze this firmware image for security issues"

Claude: I'll extract and analyze the firmware.
[Uses binwalk-mcp to extract filesystem]
[Uses yara-mcp to scan for malware patterns]
[Uses capa-mcp to identify capabilities]

Analysis complete:
- Extracted 847 files from SquashFS filesystem
- Found hardcoded credentials in /etc/shadow
- Identified network backdoor capability

Security Hardening

All containers implement defense-in-depth:

ControlImplementation
Non-root executionRuns as mcpuser (UID 1000)
Minimal imagesAlpine/Debian slim base images
Dropped capabilitiescap_drop: ALL, selective cap_add
No privilege escalationsecurity_opt: no-new-privileges:true
Read-only mountsSample directories mounted read-only
Resource limitsCPU and memory constraints
Health checksBuilt-in container health monitoring
Vulnerability scanningTrivy scans in CI/CD pipeline

Project Structure

mcp-security-hub/
├── reconnaissance/
│   ├── nmap-mcp/           # Port scanning
│   ├── shodan-mcp/         # Internet device search (wrapper)
│   ├── pd-tools-mcp/       # ProjectDiscovery tools (wrapper)
│   ├── whatweb-mcp/        # Web fingerprinting
│   ├── masscan-mcp/        # High-speed scanning
│   ├── zoomeye-mcp/        # Cyberspace search (wrapper)
│   ├── networksdb-mcp/     # IP/ASN/DNS lookups
│   └── externalattacker-mcp/ # Attack surface mapping
├── web-security/
│   ├── nuclei-mcp/         # Vulnerability scanning
│   ├── sqlmap-mcp/         # SQL injection
│   ├── nikto-mcp/          # Web server scanning (wrapper)
│   ├── ffuf-mcp/           # Web fuzzing
│   └── burp-mcp/           # Burp Suite (wrapper)
├── binary-analysis/
│   ├── radare2-mcp/        # Reverse engineering (wrapper)
│   ├── binwalk-mcp/        # Firmware analysis
│   ├── yara-mcp/           # Malware detection
│   ├── capa-mcp/           # Capability detection
│   ├── ghidra-mcp/         # Ghidra RE - pyghidra-mcp (headless)
│   └── ida-mcp/            # IDA Pro (wrapper)
├── blockchain/
│   ├── daml-viewer-mcp/    # DAML access-control analysis
│   ├── medusa-mcp/         # Smart contract fuzzing
│   └── solazy-mcp/         # Solana analysis
├── cloud-security/
│   ├── trivy-mcp/          # Container scanning (wrapper)
│   ├── prowler-mcp/        # Cloud auditing
│   └── roadrecon-mcp/      # Azure AD enumeration
├── code-security/
│   └── semgrep-mcp/        # Static code analysis (wrapper)
├── secrets/
│   └── gitleaks-mcp/       # Secrets detection
├── exploitation/
│   └── searchsploit-mcp/   # Exploit database
├── fuzzing/
│   ├── boofuzz-mcp/        # Network protocol fuzzing using Boofuzz
│   └── dharma-mcp/         # Grammar-based test case generation
├── osint/
│   ├── maigret-mcp/        # Username OSINT (wrapper)
│   └── dnstwist-mcp/       # Typosquatting detection (wrapper)
├── threat-intel/
│   ├── virustotal-mcp/     # Malware analysis (wrapper)
│   └── otx-mcp/            # AlienVault OTX (wrapper)
├── active-directory/
│   └── bloodhound-mcp/     # AD attack paths (wrapper)
├── password-cracking/
│   └── hashcat-mcp/        # Hash cracking (wrapper)
├── meta/
│   └── mcp-scan/           # MCP security scanning
├── scripts/
│   ├── setup.sh            # Quick setup
│   └── healthcheck.sh      # Health verification
├── tests/
│   └── test_mcp_servers.py # Unit tests
├── docker-compose.yml      # Orchestration
└── .github/workflows/      # CI/CD

Testing

# Run unit tests
pytest tests/ -v

# Build and test all Docker images
./scripts/test_builds.sh

# Test MCP protocol (after building)
echo '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' | \
  docker run -i --rm nmap-mcp:latest

Legal & Compliance

These tools are for authorized security testing only.

Before using:

  1. Obtain written authorization from the target owner
  2. Define scope - targets, timeline, allowed activities
  3. Maintain audit logs of all operations
  4. Follow responsible disclosure for any findings

Unauthorized access to computer systems is illegal. Users are responsible for compliance with applicable laws.

Contributing

Contributions welcome! To add a new MCP server:

  1. Use Dockerfile.template as your starting point
  2. Follow security hardening practices (non-root, minimal image)
  3. Include health checks and comprehensive README
  4. Ensure Trivy scan passes (no HIGH/CRITICAL vulnerabilities)
  5. Add tests to tests/test_mcp_servers.py

Acknowledgments

License

MIT License - See LICENSE


Maintained by FuzzingLabs
Making AI-powered security testing accessible

Files in the repo

Repository payload26 top-level entries
  • .github
  • active-directory
  • binary-analysis
  • blockchain
  • cloud-security
  • code-security
  • examples
  • exploitation
  • fuzzing
  • meta
  • osint
  • password-cracking
  • reconnaissance
  • scripts
  • secrets
  • tests
  • threat-intel
  • web-security
  • .gitignore
  • .trivyignore
  • docker-compose.yml
  • Dockerfile.template
  • LICENSE
  • pytest.ini
  • README.md
  • trivy.yaml

Discussion (0)

Ask about usage, or say what you built with it

Sign in to join the discussion.

No comments yet. Be the first to say what this is good for.

More connectors

Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface

86k

High-performance code intelligence MCP server. Indexes codebases into a persistent knowledge graph — average repo in milliseconds. 158 languages, sub-ms queries, 99% fewer tokens. Single static binary, zero dependencies.

43k

Universal provider proxy for OpenAI Codex & Claude Code — use any LLM (Claude, Gemini, Grok, DeepSeek, Ollama…) with Codex CLI, App, SDK, and Claude Code

14k
okf-memory/
okf-agent-memory

Git-native persistent memory for AI coding agents. Implements Google OKF v0.2 with sub-300µs in-memory BM25 search, embedded MCP server, and progressive disclosure. Slashes token bloat by 80% with zero external databases or dependencies. Built in pure Go.

547
tirth8205/
code-review-graph

Local-first code intelligence graph for MCP and CLI. Builds a persistent map of your codebase so AI coding tools read only what matters, with benchmarked context reductions on reviews and large-repo workflows.

31k
2akouwu/
reverify

Stop your AI from making things up — it proposes, deterministic tools decide, every claim checked against ground truth with evidence. Grounded facts and context survive resets. Reverse engineering is the proving ground. MCP server + CLI.

1.1k