DNS MCP Server

DNS MCP Server

A comprehensive DNS query server that enables querying all types of DNS records, including A, AAAA, MX, TXT, NS, CNAME, SOA, PTR, SRV, CAA, and DNSSEC checks, as well as advanced tools like WHOIS-style lookup and DNS delegation tracing.

Category
Visit Server

README

DNS MCP Server

A comprehensive DNS query server built with FastMCP that provides tools to query all types of DNS records and gather complete domain information.

Features

DNS Record Query Tools

  • A Records - Query IPv4 addresses
  • AAAA Records - Query IPv6 addresses
  • MX Records - Query mail exchange servers with priorities
  • TXT Records - Query text records (SPF, DKIM, DMARC, verification)
  • NS Records - Query authoritative nameservers
  • CNAME Records - Query canonical name aliases
  • SOA Records - Query Start of Authority information
  • PTR Records - Reverse DNS lookups
  • SRV Records - Query service location records
  • CAA Records - Query Certificate Authority Authorization
  • DS/DNSKEY Records - Check DNSSEC configuration

Advanced Tools

  • Query All Records - Get all DNS records for a domain in one call
  • DNSSEC Check - Verify DNSSEC configuration
  • WHOIS-style Lookup - Comprehensive domain information via DNS
  • Domain Availability Check - Check if domain has DNS configured
  • DNS Delegation Trace - Trace delegation chain from root to authoritative nameservers

Installation

Local Development

  1. Install dependencies:
pip install -r requirements.txt
  1. Run the server locally:
python dns_server.py

The server will start on http://localhost:8000 by default.

Deploy to FastMCP Cloud

  1. Install FastMCP CLI if you haven't already:
pip install fastmcp
  1. Login to FastMCP Cloud:
fastmcp login
  1. Deploy the server:
fastmcp deploy dns_server.py
  1. The CLI will provide you with a public URL where your MCP server is accessible.

Usage Examples

Using with MCP Client

import asyncio
from fastmcp import Client

# Replace with your deployed URL
client = Client("https://your-server.fastmcp.app/mcp")

async def main():
    async with client:
        # Query A records
        result = await client.call_tool("query_a_record", {"domain": "google.com"})
        print(result)
        
        # Query all records
        result = await client.call_tool("query_all_records", {"domain": "example.com"})
        print(result)
        
        # Reverse DNS lookup
        result = await client.call_tool("query_ptr_record", {"ip_address": "8.8.8.8"})
        print(result)
        
        # Check DNSSEC
        result = await client.call_tool("check_dnssec", {"domain": "cloudflare.com"})
        print(result)

asyncio.run(main())

Available Tools

Basic DNS Queries

  • query_a_record(domain: str) - Get IPv4 addresses
  • query_aaaa_record(domain: str) - Get IPv6 addresses
  • query_mx_record(domain: str) - Get mail servers
  • query_txt_record(domain: str) - Get TXT records
  • query_ns_record(domain: str) - Get nameservers
  • query_cname_record(domain: str) - Get CNAME alias
  • query_soa_record(domain: str) - Get SOA information
  • query_caa_record(domain: str) - Get CAA records

Advanced Queries

  • query_ptr_record(ip_address: str) - Reverse DNS lookup
  • query_srv_record(service: str, protocol: str, domain: str) - Service location
  • query_all_records(domain: str) - Get all DNS records at once
  • check_dnssec(domain: str) - Check DNSSEC status
  • whois_lookup(domain: str) - Comprehensive domain info
  • check_domain_availability(domain: str) - Check if domain is configured
  • trace_dns_delegation(domain: str) - Trace delegation chain

DNS Resolver Configuration

The server uses the following public DNS resolvers:

  • Google DNS: 8.8.8.8, 8.8.4.4
  • Cloudflare DNS: 1.1.1.1

Timeout: 5 seconds Lifetime: 10 seconds

Response Format

All tools return structured JSON responses with:

  • success: Boolean indicating if query succeeded
  • domain/ip_address: The queried domain or IP
  • record_type: Type of DNS record
  • records: Array of record data with TTL information
  • nameserver: The nameserver that provided the response
  • error: Error message if query failed

Example Response

{
  "domain": "example.com",
  "record_type": "A",
  "records": [
    {
      "data": "93.184.216.34",
      "ttl": 86400,
      "type": "A"
    }
  ],
  "nameserver": "8.8.8.8",
  "success": true
}

Use Cases

  • Domain Investigation - Research domain DNS configuration
  • Email Configuration - Check MX and SPF/DKIM/DMARC records
  • Security Analysis - Verify DNSSEC, CAA records
  • Network Troubleshooting - Reverse lookups, delegation tracing
  • Domain Monitoring - Track DNS changes and availability
  • Migration Planning - Document current DNS setup

Error Handling

The server gracefully handles DNS query failures and returns structured error responses:

{
  "domain": "nonexistent.example",
  "record_type": "A",
  "error": "The DNS query name does not exist: nonexistent.example.",
  "success": false
}

License

MIT License

Contributing

Contributions are welcome! Please feel free to submit issues or pull requests.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured