The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Raven Nest MCP listing page.
A pentesting toolkit that runs as an MCP server, giving AI assistants structured access to industry-standard security tools through a safety-hardened interface.
Authorized use only. Raven Nest is an offensive-security tool intended solely for testing systems you own or have explicit written permission to assess. Unauthorized scanning, enumeration, or exploitation may be illegal. You are solely responsible for obtaining authorization and complying with all applicable laws. The software is provided "as is", without warranty of any kind - see LICENSE.
Real MCP traffic to the tools - no LLM in the loop, fully deterministic. Targets are the authorized public test hosts example.com / scanme.nmap.org.
Scan → structured finding → report

Recon flow - connectivity, ports, web stack

Metasploit module discovery - requires an MSF-enabled build; the default container image excludes Metasploit

Raven Nest wraps 22 security tools plus Metasploit Framework behind an MCP interface with input validation, output quality assessment, session-aware context budgeting, and configurable safety limits. It handles tool execution, restart-safe background scans (completed results survive a server restart; interrupted ones surface as failed), vulnerability finding persistence, target discovery tracking, scan diffing, and multi-format report generation (Markdown, JSON, SARIF, HTML). Findings, reports, and scans are also exposed as MCP resources for browsing. 46 MCP endpoints total.
| Category | Tools |
|---|---|
| Recon | nmap, masscan, whatweb, httpx, subfinder, dnsx, dnsrecon |
| Crawling | katana |
| SMB/AD | enum4linux-ng |
| Credentialed enum (gated) | netexec |
| Vulnerability | nuclei, nikto, wpscan, dalfox (XSS) |
| Web fuzzing | feroxbuster, ffuf |
| Exploitation | sqlmap, hydra |
| Password cracking | john |
| Secret scanning | gitleaks, trufflehog |
| TLS/SSL | testssl.sh |
| Metasploit | msf_search, msf_module_info, msf_exploit, msf_auxiliary, msf_sessions, msf_post |
| Utility | ping_target, http_request |
| Scan management | launch_scan, get_scan_status, get_scan_results, list_scans, cancel_scan |
| Findings | save_finding, get_finding, list_findings, list_findings_by_scan, delete_finding, generate_report |
| Engagement | set_engagement, list_engagements |
| Discovery tracking | get_target_info, list_targets, diff_scans |
Raven Nest is an MCP server - it doesn't do anything on its own. An MCP host launches it over stdio and drives the tools. Pick whichever host suits you:
raven-nest-client
is a TypeScript terminal client (tab-completion, scan/finding/report commands,
engagement scoping) for driving Raven Nest by hand. It can launch either a local
raven-server build or the Docker image.The server is the same stdio binary in both cases.
The published image bundles raven-server and all 22 wrapped tools on a Kali
base, so you don't have to install them yourself. Point your MCP client at it
(stdio):
masscan and nmap -O need raw sockets - append --cap-add=NET_RAW and
--cap-add=NET_ADMIN to args if you use them (the container runs as a
dedicated non-root user; the runtime grants those capabilities to the container
process directly, so they keep working without root). The server is also listed
on the MCP Registry as
io.github.tidynest/raven-nest-mcp.
Create .mcp.json in your project root (or configure your MCP client directly):
The server communicates over stdio and requires no network ports.
Raven Nest loads configuration from TOML, resolved in order:
RAVEN_CONFIG environment variable (path to file)config/default.toml next to the binaryconfig/default.toml in the working directoryKey configuration sections:
See docs/USAGE.md for the full parameter reference and per-tool configuration options.
Every tool call passes through six layers:
kill_on_dropAdditional hardening:
/usr/share/, /usr/lib/, or the configured output_dir; path traversal (..) is rejectedservice (lowercase/digits/hyphens) and form_params (no leading -, no control chars), sqlmap technique (subset of BEUSTQ), ffuf filter_size (digits/commas). Targets get the same treatment (-oN/tmp/evil is rejected as flag-like)0o600 (owner-only)[scope]): when enabled, every target must match an allowed CIDR/domain and must not match a denied one (deny wins); loopback is allowed unless disabled. http_request re-validates each redirect hop against the scope, so a redirect cannot escape it. Off by default{output_dir}/audit.log with the tool, target, and redacted argumentsmin_exec_gap_ms spaces out consecutive tool launches so back-to-back aggressive tools don't trip a target's WAF or rate-limiter, and per_target_min_gap_ms does the same per host while independent targets proceed in parallel; complements the reactive WAF/rate-limit detection. Both off by defaultMetasploit integration adds a 5-layer safety model: disabled by default, per-tool allowlisting, path-boundary module blocklist, exploit confirmation gate (double-call to execute), and session command filtering. Passwords are redacted from error messages, and TLS certificate bypass is restricted to localhost connections. See docs/METASPLOIT.md.
Tools requiring root (masscan, nmap OS detection) can be run via passwordless sudo without elevating the entire server. See sudo_tools in the configuration docs.
A session-aware context budget tracker dynamically adjusts per-tool output caps based on remaining context window space. This prevents context overflow on local AI models with limited context windows (49-64K tokens).
Parser result caps scale dynamically via scale_cap() -- each tool's output parser adjusts its result limit based on the active budget mode. All tool output passes through centralised ANSI stripping and budget-aware truncation in wrap_result().
When the budget is exhausted, the server returns a message directing the AI to save findings and generate a report rather than running additional scans.
Every nmap result (run_nmap and background nmap scans) accumulates into a
per-host discovery record: ports, states, services, versions, and OS guesses,
with first/last-seen timestamps. Re-scanning merges rather than overwrites, so
the record shows how the target evolved.
list_targets / get_target_info recall the tracked hosts and full
per-host service tables without re-scanning.diff_scans compares two completed nmap scans: added/removed hosts and
ports, plus per-port state/service/version changes (open (ssh OpenSSH 8.9) → open (ssh OpenSSH 9.0)).{engagement}/targets/)
and persists across restarts.run_nmap and run_nuclei also attach machine-readable structured_content
to their responses (hosts/ports/CVEs; findings list), uncapped by the context
budget, so clients can process results without parsing prose.
The generate_report endpoint produces a structured report -- Markdown by default, or JSON, SARIF, or HTML via the format parameter -- containing:
The Markdown and HTML formats render the full narrative (table of contents, methodology, scope, generation timestamp); JSON and SARIF are structured envelopes for tooling. Findings support an owasp_category field for mapping vulnerabilities to the OWASP Top 10 (e.g. "A03:2021 Injection").
Beyond tools, the server exposes its data as read-only MCP resources under the raven:// scheme, so a client can browse or attach them without a tool call:
raven://findings -- JSON index of every saved findingraven://findings/{id} -- a single finding as JSONraven://reports/{markdown|json|sarif|html} -- a report rendered on demandraven://scans -- JSON index of background scansraven://scans/{id} -- a scan's captured outputEach saved finding and tracked scan is also listed individually, so they show up as browsable entries in resource-aware clients.
Every security tool has a structured output parser that extracts key data from raw tool output:
All parsers return Option<String> and fall back to raw output when parsing fails. Result limits scale dynamically based on the active budget mode.
The http_request tool maintains a shared cookie jar that persists within a session and across context clears (saved to disk). External subprocess tools (sqlmap, nikto, feroxbuster, etc.) do not share this jar -- pass cookies via each tool's cookie parameter.
381 unit and integration tests across 3 crates:
| Crate | Tests |
|---|---|
| raven-core | 106 |
| raven-report | 71 |
| raven-server | 191 |
| Integration | 13 |
A Python-based MCP integration test harness is also available: