dns_trace
Trace the complete DNS resolution path from root servers to the final result for a specified domain and record type using the DNS MCP Server.
Instructions
Trace the DNS resolution path from root servers to the final result
Input Schema
Name | Required | Description | Default |
---|---|---|---|
domain | Yes | The domain to trace DNS resolution path | |
recordType | No | The record type to trace | A |
Input Schema (JSON Schema)
{
"properties": {
"domain": {
"description": "The domain to trace DNS resolution path",
"type": "string"
},
"recordType": {
"default": "A",
"description": "The record type to trace",
"enum": [
"A",
"AAAA",
"CNAME",
"MX",
"TXT",
"NS",
"SOA",
"PTR",
"SRV",
"CAA"
],
"type": "string"
}
},
"required": [
"domain"
],
"type": "object"
}