Skip to main content
Glama

Get a zone profile, or list them

eurodns_dns_get_zone_profile
Read-onlyIdempotent

Retrieve a complete DNS zone profile including records, URL forwards, and mail forwards by ID, or list account profiles when no ID is given. Use it to review a reusable template before saving changes.

Instructions

Returns one zone profile in full — its records, URL forwards and mail forwards — by id, or lists the account’s profiles when id is omitted. Profiles are reusable templates applied to new zones; read one before eurodns_dns_save_zone_profile, which replaces the whole profile with what you send.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNoNumeric id of the profile to return in full. Omit it to list the account’s zone profiles, optionally filtered by name.
nameNoFilter on the profile name. Omit to list every profile.
pageNo1-based page number. There is no page meaning everything: walk pages until a short one comes back.
sizeNoResults per page, 1 to 500. A wide page is truncated by the character limit, so prefer a filter to a large size.
sortFieldNoResult field to sort on, spelled as in the response items. Unsorted when omitted.
sortOrderNoASC or DESC; only read with sortField.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataYesResponse body as returned by the API.
statusYesUpstream HTTP status code.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed7 schema fields changedv0.10.0
    • changedInput schema / properties / id / description
      Previous value: -"id of zone profile to return"New value: +"Numeric id of the profile to return in full. Omit it to list the account’s zone profiles, optionally filtered by name."
    • addedInput schema / properties / name
      Added value: +{
      +  "description": "Filter on the profile name. Omit to list every profile.",
      +  "type": "string"
      +}
    • addedInput schema / properties / page
      Added value: +{
      +  "description": "1-based page number. There is no page meaning everything: walk pages until a short one comes back.",
      +  "maximum": 9007199254740991,
      +  "minimum": 1,
      +  "type": "integer"
      +}
    • addedInput schema / properties / size
      Added value: +{
      +  "description": "Results per page, 1 to 500. A wide page is truncated by the character limit, so prefer a filter to a large size.",
      +  "maximum": 500,
      +  "minimum": 1,
      +  "type": "integer"
      +}
    • addedInput schema / properties / sortField
      Added value: +{
      +  "description": "Result field to sort on, spelled as in the response items. Unsorted when omitted.",
      +  "type": "string"
      +}
    • addedInput schema / properties / sortOrder
      Added value: +{
      +  "description": "ASC or DESC; only read with sortField.",
      +  "enum": [
      +    "ASC",
      +    "DESC"
      +  ],
      +  "type": "string"
      +}
    • removedInput schema / required
      Removed value: -[
      -  "id"
      -]
  2. First observedv0.9.1

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint=false, so the safety profile is covered. The description adds genuine behavioral context beyond that: the mode-switching behavior (get-by-id vs. list when id is omitted), the content scope of a full profile ('records, URL forwards and mail forwards'), and the destructive-replace semantics of the sibling save tool. No contradiction with annotations.

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 sentences with zero filler: the primary return behavior is front-loaded, the domain concept (profile vs. zone template) is established in a clause, and the critical read-before-save warning earns its place. Every sentence carries load-bearing information.

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 six-parameter, dual-mode tool, the combination is nearly complete: output schema documents return values, annotations cover idempotency and safety, the schema documents pagination and sorting, and the description covers the conceptual model and the save relationship. The only residual gap is that it never explicitly tells an agent to use eurodns_dns_get_zone when live zone data — not a profile template — is needed; it only implies the distinction.

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 coverage is 100%, and the schema's own parameter descriptions are unusually rich (pagination semantics, character-limit truncation, sortField spelling). The description's 'by id, or lists ... when id is omitted' restates what the id parameter schema already says ('Omit it to list the account's zone profiles'), so the description adds essentially no net-new parameter meaning beyond the structured data. Baseline 3 is appropriate.

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 names a specific verb and resource ('Returns one zone profile in full') plus a second mode ('lists the account's profiles when id is omitted'), and defines what a profile is ('reusable templates applied to new zones'), which distinguishes it from the sibling eurodns_dns_get_zone that targets live zones. It also explicitly names eurodns_dns_save_zone_profile as the counterpart, so an agent can tell this tool apart from its siblings without opening schemas.

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

Usage Guidelines4/5

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

Provides explicit sequencing guidance: 'read one before eurodns_dns_save_zone_profile', with the reason attached ('which replaces the whole profile with what you send'). This tells the agent when to call this tool in a workflow, but it does not state any explicit when-not or route to alternatives like eurodns_dns_get_zone for live zone data, so it stops short of full exclusion guidance.

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

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/JigSawFr/eurodns-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server