by burtthecoder
DNSTwist automates DNS fuzzing to detect typosquatting, phishing, and espionage threats, keeping your domains secure.
Analyzes domains for typosquatting and phishing threats by generating domain permutations and checking their registration status. Uses Docker-based dnstwist tool to identify potentially malicious domains.
DNSTwist is a community-built MCP server published by burtthecoder that provides AI assistants with tools and capabilities via the Model Context Protocol. DNSTwist automates DNS fuzzing to detect typosquatting, phishing, and espionage threats, keeping your domains secure. It is categorized under auth security.
You can install DNSTwist in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
DNSTwist is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
We evaluated DNSTwist against two servers with overlapping tools; this profile had the clearer scope statement.
DNSTwist is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
Strong directory entry: DNSTwist surfaces stars and publisher context so we could sanity-check maintenance before adopting.
DNSTwist reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
DNSTwist has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
Useful MCP listing: DNSTwist is the kind of server we cite when onboarding engineers to host + tool permissions.
DNSTwist is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
Useful MCP listing: DNSTwist is the kind of server we cite when onboarding engineers to host + tool permissions.
According to our notes, DNSTwist benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
DNSTwist reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
showing 1-10 of 26
A Model Context Protocol (MCP) server for dnstwist, a powerful DNS fuzzing tool that helps detect typosquatting, phishing, and corporate espionage. This server provides tools for analyzing domain permutations and identifying potentially malicious domains. It is designed to integrate seamlessly with MCP-compatible applications like Claude Desktop.
<a href="https://glama.ai/mcp/servers/it7izu3ufb"><img width="380" height="200" src="https://glama.ai/mcp/servers/it7izu3ufb/badge" alt="mcp-dnstwist MCP server" /></a>
This tool is designed for legitimate security research purposes. Please:
To install DNStwist for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @burtthecoder/mcp-dnstwist --client claude
Install Docker:
Install the server globally via npm:
npm install -g mcp-dnstwist
{
"mcpServers": {
"dnstwist": {
"command": "mcp-dnstwist"
}
}
}
Configuration file location:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonIf you prefer to run from source or need to modify the code:
git clone <repository_url>
cd mcp-dnstwist
npm install
npm run build
{
"mcpServers": {
"dnstwist": {
"command": "node",
"args": ["/absolute/path/to/mcp-dnstwist/build/index.js"]
}
}
}
fuzz_domaindomain (required): Domain name to analyze (e.g., example.com)nameservers (optional, default: "1.1.1.1"): Comma-separated list of DNS serversthreads (optional, default: 50): Number of threads for parallel processingformat (optional, default: "json"): Output format (json, csv, list)registered_only (optional, default: true): Show only registered domainsmxcheck (optional, default: true): Check for MX recordsssdeep (optional, default: false): Generate fuzzy hashes of web pagesbanners (optional, default: true): Capture HTTP banner informationExample:
{
"domain": "example.com",
"nameservers": "1.1.1.1,8.8.8.8",
"threads": 50,
"format": "json",
"registered_only": true,
"mxcheck": true,
"banners": true
}
docker --version
docker ps
sudo usermod -aG docker $USERDNS resolution problems:
Performance issues:
After fixing any issues:
git checkout -b feature/amazing-feature)git commit -m 'Add amazing feature')git push origin feature/amazing-feature)This project is licensed under the MIT License - see the LICENSE file for details.
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.