get_mx_records
Retrieve MX records for a domain to identify mail server configurations and verify email delivery infrastructure.
Instructions
Get MX (mail) records for a domain.
Args: domain: The domain name to query (e.g., example.com) ctx: Request context
Returns: Formatted string containing MX records
Input Schema
Name | Required | Description | Default |
---|---|---|---|
domain | Yes |
Input Schema (JSON Schema)
{
"properties": {
"domain": {
"title": "Domain",
"type": "string"
}
},
"required": [
"domain"
],
"type": "object"
}