Overview
mcp-dnsdumpster is an MCP server that interacts with the DNSDumpster API, allowing AI assistants to perform detailed DNS reconnaissance through natural language requests.
To use mcp-dnsdumpster, install the package via PyPI or from source, set your API key, and run the server. You can then query DNS records using natural language prompts.
- Query domain DNS records through AI assistants - Retrieve detailed information about A, CNAME, MX, TXT, NS records, and Banner information - Support for pagination and domain map generation (Plus accounts) - Rate limiting and caching
- Performing DNS reconnaissance for cybersecurity assessments
- Analyzing domain structures for research purposes
- Automating DNS queries in AI-driven applications
Add to your AI client
Use these steps to connect DNSDumpster - MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-dnsdumpster-maxweeden": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-dnsdumpster-maxweeden"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-dnsdumpster-maxweeden": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-dnsdumpster-maxweeden"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-dnsdumpster-maxweeden": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-dnsdumpster-maxweeden"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-dnsdumpster-maxweeden": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-dnsdumpster-maxweeden"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-dnsdumpster-maxweeden": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-dnsdumpster-maxweeden"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-dnsdumpster-maxweeden": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-dnsdumpster-maxweeden"
]
}
}
}FAQ
What types of DNS records can I query?
You can query A, CNAME, MX, TXT, NS records, and Banner information.
Is there a limit on the number of queries?
Yes, there are rate limits in place, especially for Plus accounts.
How do I install mcp-dnsdumpster?
You can install it via PyPI using `pip install mcp-dnsdumpster` or clone the repository from GitHub.