Skip to main content
Glama

Atom.com — Premium Domains

get_domain_details

Read-only

Get the full detail record for ONE specific Atom domain listing — the deep-dive after a user picks a name from search_brandable_domains or generate_domain_names, or asks to know more about a particular domain.

Returns: status, price + currency, extension_options[] (other TLDs of the name for sale, with prices), category, description, age/traffic when available, and purchase_url/details_url. If the domain is not an Atom listing, returns error "not_found" (then use check_domain_availability for registry status). Present price, key attributes, and the purchase link.

IMPORTANT: when price_on_request is true, price is null on purpose — this listing's price is deliberately undisclosed (make-offer/price-on-request). Never state or imply a price (including "$0" or "free") in that case; tell the user to contact the seller or make an offer via purchase_url. When available_for_purchase is false, the listing has already been sold — purchase_url is not usable; tell the user this domain is no longer available.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
domainYesThe domain to look up, including extension.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
ageNo
urlYes
priceNoListing price in USD. null when price_on_request is true.
domainYes
statusNo
successYes
trafficNo
categoryNo
currencyNo
descriptionNo
details_urlNoAtom details page.
purchase_urlNoDirect purchase link.
price_on_requestNoTrue when the price is deliberately undisclosed (make-offer/price-on-request) — never state a price in this case.
extension_optionsNoOther TLDs of the name for sale, with prices.
available_for_purchaseNoFalse when this listing has already been sold/transferred — purchase_url is not usable in that case.

TDQS

A4.6/5.0
Behavior5/5

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

Annotations only declare readOnlyHint and openWorldHint. The description adds substantial behavioral detail: the returned fields, the not_found error path, price_on_request semantics with an explicit 'never imply a price' rule, and available_for_purchase=false meaning the listing is sold and purchase_url is unusable. It remains consistent with readOnlyHint.

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

Conciseness4/5

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

The description is longer than typical, but the length is earned: the purpose sentence is front-loaded, the return summary is compact, and the two IMPORTANT caveats address high-stakes edge cases. Minor redundancy exists with 'Present price, key attributes, and the purchase link' repeating the return list, but overall it remains well organized.

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

Completeness5/5

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

Given a single-parameter schema, read-only annotation, and output schema present, the description covers invocation context, error handling, and edge-case behavior. Nothing an agent needs to decide whether to call this tool or to interpret special price/availability results is missing.

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 only parameter domain is already described as 'The domain to look up, including extension.' The description reinforces the single-domain scope but adds no new parameter format, constraints, or examples beyond the schema, so the 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?

Description uses a specific verb+resource: 'Get the full detail record for ONE specific Atom domain listing.' It explicitly positions itself as the deep-dive after search_brandable_domains or generate_domain_names, and contrasts with check_domain_availability for non-Atom domains, clearly distinguishing it from siblings.

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?

Gives explicit when-to-use guidance: after a user picks a name from search_brandable_domains or generate_domain_names, or asks to know more about a particular domain. Also gives an exclusion: if the domain is not an Atom listing, it returns not_found and the agent should use check_domain_availability. This is strong routing guidance.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.1/5.0
Disambiguation2/5

Several tools serve the same resource+action through different payment channels (e.g., register_domain, register_domain_spt, get_domain_register_pay_link; purchase_domain, get_domain_purchase_pay_link, get_checkout_link; buy_ai_tokens, get_ai_tokens_pay_link). brainstorm_names is explicitly a duplicate of search_brandable_domains, so the set has multiple confusing overlaps despite detailed descriptions.

Naming Consistency4/5

Most tool names follow a predictable snake_case verb_noun pattern (appraise_domain, check_domain_availability, purchase_domain, screen_trademark_conflicts). Minor deviations like brainstorm_names, register_domain_spt, and get_checkout_link break the pattern slightly but remain readable and recognizable.

Tool Count3/5

Sixteen tools is right at the boundary where a tool set starts to feel heavy. Many tools are legitimately needed for discovery, purchasing, and payment routing, but the duplicate name-generation tool and the multiple payment-route variants add unnecessary bulk.

Completeness4/5

The core domain lifecycle is well covered: search/discovery, availability checks, details, appraisal, trademark screening, registrant contact, and both fresh registration and marketplace purchase paths are present. Minor gaps exist around post-purchase management, account balance visibility, and offer submission, but the main user journey has no significant dead ends.