Skip to main content
Glama

Get a contact profile, or list them

eurodns_contact_get_profile
Read-onlyIdempotent

Retrieve a contact profile by ID or list profiles filtered by type and role. Use this to view registrant, admin, technical, or billing contacts before saving or setting as default.

Instructions

Returns one reusable contact profile — the registrant, admin, technical or billing identity attached to domains — by id, or lists the account’s profiles filtered by type and role when id is omitted. Read a profile before eurodns_contact_save_profile, which needs every field; eurodns_contact_set_as_default_profile chooses which one future orders use.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNoNumeric id of the contact profile to return in full. Omit it to list the account’s profiles, filtered by type and role.
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.
typeNoFilter on the contact type: PRIVATE_PERSON, COMPANY, ORGANISATION or PUBLIC_BODY.
isOrgNoKeep only profiles usable as the registrant (owner) contact.
isTechNoKeep only profiles usable as the technical contact.
isAdminNoKeep only profiles usable as the administrative contact.
isBillingNoKeep only profiles usable as the billing contact.
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. Changed11 schema fields changedv0.10.0
    • addedInput schema / properties / id / description
      Added value: +"Numeric id of the contact profile to return in full. Omit it to list the account’s profiles, filtered by type and role."
    • addedInput schema / properties / isAdmin
      Added value: +{
      +  "description": "Keep only profiles usable as the administrative contact.",
      +  "type": "boolean"
      +}
    • addedInput schema / properties / isBilling
      Added value: +{
      +  "description": "Keep only profiles usable as the billing contact.",
      +  "type": "boolean"
      +}
    • addedInput schema / properties / isOrg
      Added value: +{
      +  "description": "Keep only profiles usable as the registrant (owner) contact.",
      +  "type": "boolean"
      +}
    • addedInput schema / properties / isTech
      Added value: +{
      +  "description": "Keep only profiles usable as the technical contact.",
      +  "type": "boolean"
      +}
    • 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"
      +}
    • addedInput schema / properties / type
      Added value: +{
      +  "description": "Filter on the contact type: PRIVATE_PERSON, COMPANY, ORGANISATION or PUBLIC_BODY.",
      +  "enum": [
      +    "PRIVATE_PERSON",
      +    "COMPANY",
      +    "ORGANISATION",
      +    "PUBLIC_BODY"
      +  ],
      +  "type": "string"
      +}
    • removedInput schema / required
      Removed value: -[
      -  "id"
      -]
  2. First observedv0.9.1

TDQS

A4.4/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 fully covered. The description adds useful behavioral detail beyond annotations: id omission switches to list mode, pagination behavior is implied by 'lists the account's profiles filtered by type and role', and it hints at preconditions for related save operations. This is strong but not exceptional—there is no explicit mention of open-world listing behavior or output format details, though the output schema covers return values.

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?

Three sentences with zero filler. The first sentence front-loads the core behavior (get by id vs list), and the second sentence gives actionable guidance for sibling tools. Every sentence adds useful information and the definition remains compact.

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?

Despite a 10-parameter schema, the description is sufficient because the schema covers all parameter semantics at 100% and the output schema exists for return values. The description supplies the missing context: which sibling tools to use first/next, and the id-vs-list mode distinction. A 5 would require explicit pagination guidance or open-world caveats, but those are minor given the schema and annotations.

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 a small amount of meaning by tying id omission to list mode and mentioning the field-type/role filters in the tool purpose, but it does not materially expand on the parameter meanings beyond the schema. Baseline 3 is appropriate because the schema carries the heavy lifting and the description only lightly reinforces it.

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 clearly states the tool returns one contact profile by id, or lists profiles filtered by type/role when id is omitted. It explicitly distinguishes itself from eurodns_contact_save_profile and eurodns_contact_set_as_default_profile, so an agent can select correctly among sibling contact tools.

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

Usage Guidelines5/5

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

It provides explicit when-to-use guidance: read a profile before saving because save needs every field, and set_as_default_profile chooses which profile future orders use. This differentiates the read/list operation from mutating alternatives and gives the agent a clear procedural context.

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