dns_lookup
Resolve a DNS record (A, AAAA, MX, TXT, NS).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Domain name, e.g. github.com | |
| type | No | A |
Resolve a DNS record (A, AAAA, MX, TXT, NS).
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Domain name, e.g. github.com | |
| type | No | A |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It clearly communicates a read-only network lookup behavior, but does not mention possible failures, timeouts, or what the returned records look like. This is acceptable for a simple lookup but not richly transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single sentence with no filler, front-loading the action and resource. It is appropriately sized for a two-parameter tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple and the schema covers both parameters, but the description omits CNAME, does not mention the default type of A, and provides no information about return values or error behavior. Adequate for straightforward usage, but with clear gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 50%, and the description partially compensates by listing acceptable record types. However, it omits CNAME even though the schema permits it, and it adds no explanation of how the name parameter is used beyond what the schema already states.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('Resolve') and resource ('a DNS record'), and lists the main record types. It does not explicitly differentiate from sibling tools, but the sibling tools are clearly unrelated domains, so there is no real ambiguity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Usage is implied by the verb and resource: use when a DNS record for a domain is needed. There is no explicit guidance on when to prefer this tool over alternatives, but no competing lookup sibling exists.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.