Skip to main content
Glama

list_zones

Retrieve Cloudflare zones for your account, with optional domain filter and pagination to inspect zone IDs, names, status, and plan details.

Instructions

List zones in your Cloudflare account. Returns zone details such as ID, name, status, and plan.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoA domain name to filter zones by
pageNoPage number of paginated results (default: 1)
per_pageNoNumber of zones per page (default: 20, max: 50)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.4/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It discloses that this is a read-only listing operation and mentions returned details, but it does not explain pagination behavior, filtering semantics, authentication needs, or any rate-limit implications.

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?

The description is two short sentences with no filler. The primary action is front-loaded, and the output details are stated efficiently.

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 simple list tool with three optional parameters and no output schema, the description plus schema covers the essential information. It states what is returned, and the schema documents the parameters. It could mention pagination behavior more explicitly, but overall it is complete enough for an agent to invoke correctly.

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 baseline is 3. The description does not add any meaning beyond the schema for the name, page, or per_page parameters, but it also does not need to since the schema already documents them adequately.

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

Purpose4/5

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

The description clearly states the verb ('List') and resource ('zones in your Cloudflare account'), and mentions the returned fields. It is distinct from singular get_zone, but it does not explicitly differentiate itself from sibling tools.

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?

There is no guidance on when to use this tool versus alternatives like get_zone or list_accounts. The description implies a list operation but provides no context about filtering, pagination, or when a different tool would be more appropriate.

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