Skip to main content
Glama

list_dns_records

Fetch and filter DNS records for a Cloudflare zone, retrieving details like type, name, content, TTL, and proxy status. Simplify DNS management by querying specific records with pagination support.

Instructions

List DNS records for a Cloudflare zone. Returns record details such as ID, type, name, content, TTL, and proxy status.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoDNS record name to filter by
pageNoPage number of paginated results (default: 1)
typeNoDNS record type to filter by (A, AAAA, CNAME, TXT, MX, etc.)
contentNoDNS record content to filter by
zone_idYesrequired,The ID of the zone
per_pageNoNumber of records per page (default: 100, max: 5000)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description must carry the behavioral disclosure burden. It clearly signals a read-only list operation and enumerates return fields, but it does not mention pagination behavior, result limits, or how the filtering parameters affect the response. This is acceptable but not rich.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences with the action front-loaded and the return fields following. No filler or repetition of schema details.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a straightforward list operation with fully documented parameters and a stated set of return fields, the description is largely sufficient. It does not explicitly explain pagination behavior, but the schema's page/per_page parameters cover that. A slightly richer usage note would make it complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents every parameter. The description adds no meaning beyond the schema, such as filter syntax or interactions between parameters. Baseline 3 is appropriate because the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb and resource: 'List DNS records for a Cloudflare zone.' It also names the return fields, which distinguishes this from sibling tools like list_passive_dns or get_dns_analytics. An agent can identify exactly what this tool does without opening the schema.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is given about when to use this tool instead of alternatives. It does not mention prerequisites such as needing a valid zone_id, nor does it contrast against sibling DNS-related tools. Usage must be inferred entirely from the tool name and first sentence.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.