DNS & email security scanner β 51 tools for SPF, DMARC, DKIM, DNSSEC, SSL, and more.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
Inspect callable tools, capabilities, and parameters exposed to AI agents by Dns.
groupfunctional group (`email_auth`, `infrastructure`, `brand_threats`, `dns_hygiene`, `intelligence`, `remediation`, `discovery`, `identity_secops`, `meta`).
tierscoring tier (`core` / `protective` / `hardening`); absent for non-scoring tools.
scanIncluded`true` when the tool runs inside `scan_domain`'s parallel audit.
recommendedpresent (`true`) only on the curated **starter set** (`scan_domain`, `explain_finding`, `compare_baseline`); omitted otherwise. A client facing the full surface can lead with `tools.filter(t => t._meta.recommended)` to avoid overwhelming an LLM with all tools flat. Every tool is still listed β thisβ¦
Know where you stand.
Source-available DNS & email security scanner for Claude, Cursor, VS Code, and MCP clients across Streamable HTTP, stdio, and legacy HTTP+SSE.
Claude Desktop (one-click install):
Download the Blackveil DNS extension and open it β the current 80-tool surface is available instantly. Verify your download.
Claude Code (one command):
Then ask: scan anthropic.com
Smithery (one command):
Verify the endpoint is live:
No install. No API key. One URL for hosted HTTP:
Transport support:
Streamable HTTP: POST /mcp, GET /mcp, DELETE /mcpNative stdio: blackveil-dns-mcp CLI from the blackveil-dns npm packageLegacy HTTP+SSE: GET /mcp/sse bootstrap stream plus POST /mcp/messages?sessionId=...For Streamable HTTP, clients should retain the Mcp-Session-Id returned by initialize and send it on every subsequent request, including notifications. Send the negotiated version in MCP-Protocol-Version; unsupported values are rejected with HTTP 400, while expired or terminated sessions return 404 and require a fresh initialize.
generate (artifact=fix_plan) produces provider-aware prioritized actions; its record artifacts (spf_record, dmarc_record, dkim_config, mta_sts_policy, rollout_plan) output ready-to-publish records; validate_fix confirms whether a fix was applied successfullymap_supply_chain correlates DNS signals to build a full third-party dependency graph with trust levels and risk signalssimulate_attack_paths enumerates specific paths (spoofing, takeover, hijack) with severity, steps, and mitigationsmap_compliance maps scan findings to NIST 800-177, PCI DSS 4.0, SOC 2, and CIS Controls_meta)tools/list returns every tool with server-specific discovery metadata under each tool's _meta (the MCP-sanctioned extension point), so a client can group or filter the surface without hard-coding tool names:
group β functional group (email_auth, infrastructure, brand_threats, dns_hygiene, intelligence, remediation, discovery, identity_secops, meta).tier β scoring tier (core / protective / hardening); absent for non-scoring tools.scanIncluded β true when the tool runs inside scan_domain's parallel audit.recommended β present (true) only on the curated starter set (scan_domain, explain_finding, compare_baseline); omitted otherwise. A client facing the full surface can lead with tools.filter(t => t._meta.recommended) to avoid overwhelming an LLM with all tools flat. Every tool is still listed β this is an additive signal, not a filter.check_authoritative_dns_infra scores authoritative DNS hosting behavior for a hostname. It is designed to consume raw UDP/TCP DNS, authoritative AA/RA behavior, zone-transfer refusal, DNSSEC, abuse-resistance, BGP/RPKI, and multi-vantage evidence from the BV_INFRA_PROBE service binding when that worker is provisioned.
check_root_server_set validates the DNS root-server set against the embedded official root hints. With BV_INFRA_PROBE, it also checks live root priming, glue, parent/child delegation, DNSKEY, and SOA serial evidence across roots.
Self-hosted or local deployments without BV_INFRA_PROBE still return structured partial results. The worker-only mode records the embedded root hints and marks live raw-DNS, routing, RPKI, and vantage capabilities as inconclusive rather than pretending they ran.
The server classifies detected MCP clients by their default response format:
claude_mobile, claude_code, cursor, vscode, claude_desktop, claude_connector, windsurf (auto-format: compact)mcp_remote, blackveil_dns_action, bv_claude_dns_proxy, unknown (auto-format: full)The bv_load_test class identifies internal load/chaos/tranco-scan traffic so it stays out of real-client analytics segments.
The comprehensive chaos suite validates session stability, authentication precedence, format negotiation, and transport-specific edge cases across Streamable HTTP and Legacy SSE for its supported client fixtures. Without an API key it exercises the public/free-tier path; with a valid key exported as BV_API_KEY, it covers Bearer authentication, legacy self-host ?api_key= compatibility, authenticated SSE bootstrap, and authenticated batch behavior.
Run the client/session chaos suite locally: python3 scripts/chaos/chaos-test-clients.py.
Run repeat force-refresh scans to detect production scoring drift:
The stability harness negotiates MCP protocol 2025-06-18, accepts JSON and Streamable HTTP SSE responses, and exits non-zero on any transport/tool error or score/category drift. Use --from <json-file> with a JSON array of domains for a targeted provider-diversity sweep.
SSOT guardrails are enforced by focused audit tests:
TOOLS registry.BV_INFRA_PROBE service binding supplies raw authoritative DNS, root-server, BGP/RPKI, and vantage evidence for the authoritative DNS infrastructure profilebv-wasm-corecompact vs full) based on client User-Agentdiscover_brand_domains / brand_audit_*)The discovery_mode argument accepts two values:
classic (the default everywhere this repo runs out-of-the-box) β the public, BUSL-licensed signal-sweep pipeline. Uses only public-internet data sources (DNS, RDAP, CT logs, MX/TXT inspection). This is the only mode supported for self-hosted deployments and the only mode the open test suite covers end-to-end.tiered β layers a portfolio-aware Tier 0 / infrastructure-graph Tier 1 / declared-evidence Tier 2 pipeline in front of the classic sweep. Tiered mode requires private BlackVeil-internal cross-Worker bindings (BV_INFRA_GRAPH, BV_INTEL_GATEWAY, BV_ENTERPRISE) that are not packaged with the open distribution β they live in BlackVeil's production deploy overlay (.dev/wrangler.deploy.jsonc) and call into proprietary Workers. Self-hosters cannot enable tiered mode without those bindings.BlackVeil's hosted production at dns-mcp.blackveilsecurity.com flips its runtime default to tiered via the env var BRAND_AUDIT_DISCOVERY_MODE_DEFAULT="tiered" in the private overlay; the public schema default in src/schemas/tool-args.ts stays 'classic' permanently so anyone building from main gets the BUSL-licensed behaviour unchanged. An explicit caller-supplied discovery_mode always wins over the env default.
The free tier requires no authentication. Authenticated requests bypass per-IP rate limits and follow your tier's daily quota. Hosted production supports:
Authorization: Bearer <KEY>ENABLE_OAUTH=true; owner-key consent is separately gated by ENABLE_OWNER_OAUTH=true.The ?api_key=<KEY> fallback is legacy/self-host compatibility only. BlackVeil hosted production sets REJECT_QUERY_API_KEY=true; clients that cannot send headers should use OAuth or an mcp-remote header bridge.
For full hosted setup examples, stdio usage, OAuth setup, and legacy fallback endpoints, see docs/client-setup.md.
These settings apply to operators running their own deployment. They are optional β self-hosted (BUSL) deployments fall back to privacy-preserving defaults when they are unset.
The public /mcp path writes a per-event access log enriched with geolocation and network identity. The write path, PII depth, and retention are operator-controlled:
| Binding / var | Type | Purpose |
|---|---|---|
MCP_ANALYTICS_QUEUE | Queue | Operator-deploy only. Batches access-log writes off the request path. Absent on self-hosts β inline-insert fallback (no reverse-DNS lookup). |
ANALYTICS_PII_LEVEL | var | coarse (default) | standard | full. Controls access-log PII depth: coarse = country/region/ASN + hashed/masked IP; standard adds encrypted IP + city; full adds lat/long + reverse-DNS (PTR). |
ANALYTICS_RETENTION_DAYS | var | Access-log retention window in days (default 90, clamped 1β365). Rows older than the window are pruned by the scheduled handler. |
| PTR third-party disclosure | β | At ANALYTICS_PII_LEVEL=full, caller-IP PTR lookups resolve through the configured DoH chain, whose final fallback is Google Public DNS β an external disclosure of caller-IP-derived queries that operators should weigh before enabling full. Per-subject erasure: POST /internal/analytics/erase?key_hash=β¦|ip_hash=β¦ (strict internal bearer; self-audited). |
These live under the internal auth gate (/internal/*) and are called by bv-web, not the public surface:
| Endpoint | Source | Notes |
|---|---|---|
GET /internal/analytics/usage?days=&key_hash= | D1 | Precise per-customer usage report. |
GET /internal/analytics/geo?days= | Analytics Engine | Geographic rollup (country/region/city/ASN) for dashboards. |
GET /internal/analytics/forensics?days=&ip_hash=&key_hash= | D1 | STRICT-gated, operator-only. Returns decrypted client IP + PTR for abuse investigation; every call writes a self-audit row. |
| Free | Pro | Enterprise | |
|---|---|---|---|
| Price | $0 | $39/mo | Contact us |
| Scans/day | 25 | 500 | 10,000+ |
| Checks/day | Tool-specific limits | Tool-specific limits | Contract limits |
| Rate limit | 50 req/min | None | None |
| API access | Yes | Yes | Yes |
| MCP access | Yes | Yes | Yes |
Offensive/recon and multi-domain tools (subdomain discovery, attack-path simulation, lookalike/shadow-domain detection, fast-flux detection, supply-chain mapping, real-time threat feed, bucket/OSINT investigations, batch_scan, compare_domains, brand audits) require a paid plan (Pro / developer tier or higher); free, unauthenticated, and agent-tier callers get an HTTP 403 upgrade-required response. Unauthenticated callers are additionally capped at a small number of distinct domains per day (best-effort, fail-open). The OSINT/bucket status and report pollers stay free.
These demonstrate core functionality β paste any of them into Claude with the Blackveil DNS connector enabled:
| Prompt | What it does |
|---|---|
Scan blackveilsecurity.com and tell me what needs fixing | Full security audit β score, grade, prioritized findings |
Compare the email security of google.com and microsoft.com | Side-by-side comparison of two domains' postures |
Generate a DMARC record for example.com with reject policy | Produces a ready-to-publish DNS record |
What attack paths exist for example.com? | Enumerates spoofing, takeover, and hijack vectors |
Map example.com's compliance against NIST 800-177 | Maps findings to compliance framework controls |
This tool is intended for authorized security assessments of domains you own or have explicit permission to test. Do not use it for unauthorized reconnaissance, harassment, or any activity that violates applicable laws. Findings from attack simulation, spoofability, and subdomain discovery tools should be used to improve your own security posture, not to exploit others.
If you discover a vulnerability in a third-party domain, please follow coordinated disclosure practices.
Built and maintained by BLACKVEIL β NZ-owned cybersecurity consultancy.
Privacy Policy Β· License (BUSL-1.1 β MIT on 2030-03-17)
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/dns)<a href="https://allmcps.com/mcp/dns"><img src="https://allmcps.com/api/badge/dns?style=directory" alt="Dns on AllMCPs" /></a>