WolfTech DNS MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| logging | {} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| extensions | {
"io.modelcontextprotocol/ui": {}
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| dns_lookupA | Look up any DNS record type for a given domain.
|
| spf_checkA | Retrieve and validate the SPF record for a domain. Checks syntax, counts DNS lookups (warns if approaching or exceeding the 10-lookup limit), and identifies common errors.
|
| mx_checkA | Look up MX records for a domain with priority ordering and resolved IP addresses.
|
| dmarc_checkA | Look up and parse the DMARC record for a domain.
|
| dkim_checkA | Look up a DKIM record for a domain using a specific selector.
|
| reverse_dnsA | Perform a reverse DNS lookup on an IP address.
|
| domain_healthA | Run a comprehensive check on a domain's email-related DNS configuration. Checks A, AAAA, NS, MX, SPF, DMARC, and provides an overall health assessment.
|
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 7 tools
Each tool targets a distinct DNS resource or check: generic lookup, SPF, MX, DMARC, DKIM, reverse DNS, and aggregate health. No two tools overlap in purpose.
All names are lowercase snake_case and readable, but they mix patterns: 'dns_lookup' and 'reverse_dns' use different structures than the '_check' suffix used by most email validation tools. Minor inconsistency, still predictable.
Seven tools is well-scoped for a DNS/email diagnostic server. Each tool addresses a specific need, and the count feels appropriately focused without bloat or thinness.
The set covers generic DNS lookups, core email authentication records (SPF, MX, DMARC, DKIM), reverse DNS, and an aggregate health check. It provides a complete read-only diagnostic workflow with no obvious gaps.