Skip to main content
Glama

Server Quality Checklist

67%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v1.1.0

  • Disambiguation3/5

    Most tools are distinct (whois_lookup vs rdap_lookup vs domain_check), but find_whois_server, tld_info, and rdap_bootstrap_info overlap in surfacing server/bootstrap information and could be confused by an agent. whois_lookup and whois_raw also both query WHOIS, differing only in parsing and server targeting.

    Naming Consistency3/5

    Names are uniformly snake_case but follow mixed patterns: whois_lookup/rdap_lookup use verb_noun, domain_check/bulk_domain_check use noun_check, while tld_info and rdap_bootstrap_info are noun phrases. The inconsistency is readable but not predictable across the set.

    Tool Count5/5

    8 tools is well-scoped for a WHOIS/RDAP domain lookup server. Each tool covers a distinct protocol, use case, or operational need without unnecessary bloat.

    Completeness5/5

    The tool set covers WHOIS lookup, RDAP lookup, raw queries, server discovery, TLD metadata, single-domain availability, and bulk availability. This forms a complete surface for domain registration information and WHOIS/RDAP troubleshooting.

  • Average 3.9/5 across 8 of 8 tools scored. Lowest: 3.3/5.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 0 commits in the last 12 weeks
    • No stable releases found
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI status not available
  • This repository is licensed under MIT License.

  • This repository includes a README.md file.

  • No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.

    Tip: use the "Try in Browser" feature on the server page to seed initial usage.

  • Add a glama.json file to provide metadata about your server.

  • If you are the author, simply .

    If the server belongs to an organization, first add glama.json to the root of your repository:

    {
      "$schema": "https://glama.ai/mcp/schemas/server.json",
      "maintainers": [
        "your-github-username"
      ]
    }

    Then . Browse examples.

  • Add related servers to improve discoverability.

How to sync the server with GitHub?

Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.

To manually sync the server, click the "Sync Server" button in the MCP server admin interface.

How is the quality score calculated?

The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).

Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.

Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).

Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.

Tool Scores

  • Behavior3/5

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

    No annotations are provided, so the description carries the behavioral disclosure burden. It does mention concurrent/parallel processing and configurable concurrency, which is useful behavioral context. However, it does not describe failure behavior, timeout handling, whether network requests are made, or how results are returned, leaving notable gaps for an unannotated tool.

    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 short and front-loaded with the core purpose in the first sentence. The second sentence adds relevant detail about configurable parallelism but is somewhat redundant with the word 'concurrently.' Overall, it is efficient with minimal fluff.

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

    Completeness2/5

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

    There is no output schema and no annotations, yet the description never explains what the tool returns or how availability results are structured. It also omits important operational behavior such as rate limits, error cases, and how the 'auto' method selects between WHOIS and RDAP. For a bulk network tool, this is a meaningful completeness gap.

    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 all four parameters (method, domains, timeout, concurrency) are already documented structurally. The description adds only general context about multiple domains and parallel processing, not meaningfully new parameter semantics beyond the schema.

    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 states a clear, specific action: checking multiple domains for availability, and highlights the concurrent nature. It distinguishes itself from single-domain or lookup-specific siblings like domain_check, whois_lookup, and rdap_lookup through 'multiple domains' and 'concurrently,' though it does not explicitly name those alternatives.

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

    Usage Guidelines3/5

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

    The description gives a useful context clue: 'Useful for finding available domains across multiple TLDs or name variations.' However, it does not explicitly explain when to choose this tool over domain_check or the other lookup siblings, nor does it state conditions where a single-domain lookup would be preferable.

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

  • Behavior3/5

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

    With no annotations provided, the description carries the burden of explaining behavior. It usefully states that the data comes from IANA and that the tool returns authoritative WHOIS server, RDAP server, and registry data. It does not mention whether the lookup is live or cached, error behavior, or response format, but for a simple read-only metadata lookup this is acceptable.

    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 compact sentences with no redundant wording. The core action and expected outputs are front-loaded, and the supported TLD classes are stated efficiently in a single follow-up sentence.

    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 one-parameter tool with no output schema, the description provides the essential context: data source, returned content, and TLD scope. It could be more complete by describing the return shape or possible failure modes, but it still gives an agent enough to understand what the tool does and when to call it.

    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?

    The input schema already fully documents the tld parameter with examples and the rule to omit the leading dot, so schema coverage is 100%. The description adds some context about supported TLD categories but does not significantly enrich the parameter meaning beyond what the schema already provides.

    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 opens with a specific verb and resource ('Get information about a TLD... from IANA') and lists concrete outputs such as the authoritative WHOIS server, RDAP server, and IANA registry data. It is clear about what the tool does, though it does not explicitly differentiate itself from sibling tools like whois_lookup or find_whois_server by name.

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

    Usage Guidelines3/5

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

    The description implies this tool is for TLD-level metadata lookups rather than domain-level WHOIS/RDAP queries, and the 'Works for...' line indicates broad applicability. However, it gives no explicit guidance on when to prefer this tool over the sibling alternatives or when not to use it.

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

  • Behavior4/5

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

    With no annotations, the description carries the transparency burden. It discloses the two-step behavior (checking the built-in database first, then querying IANA for unknown TLDs) and the returned information type. This provides meaningful behavioral context beyond the schema, though it stops short of mentioning error handling or exact response structure.

    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 short sentences, each earning its place: what the tool returns, the lookup algorithm, and the result composition. The primary purpose is front-loaded, and there is no redundant or filler content.

    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 single-parameter, read-only discovery tool, the description is largely complete: it states the input, the lookup strategy, and the output focus. It is slightly thin on the exact shape of the return value since there is no output schema, but the high-level 'both WHOIS and RDAP server information' is sufficient for basic selection and invocation.

    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?

    The schema already fully describes the single parameter with an example ('example.com' or 'com'), so schema coverage is 100%. The description reuses the domain-or-TLD concept but adds no additional parameter semantics, matching the baseline of 3.

    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: it discovers WHOIS and RDAP servers for a domain or TLD. It also clarifies the output scope by mentioning both server types, making the tool's purpose unambiguous even among siblings like whois_lookup and rdap_lookup.

    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 on when to use this tool versus siblings such as rdap_bootstrap_info or whois_lookup. The description explains the internal lookup order but does not tell an agent when this tool is the right choice or when a sibling 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.

  • Behavior4/5

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

    With no annotations, the description carries the behavioral disclosure burden. It adds value beyond the schema by stating the return shape ('structured JSON responses'), the discovery mechanism ('Automatically discovers the RDAP server via IANA bootstrap'), and the failure behavior ('falls back with a clear error message'). It doesn't cover auth/rate limits, but for a read-only lookup this is noticeably transparent.

    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?

    Four sentences, front-loaded with purpose, and every sentence contributes distinct information: what the tool does, protocol context, server discovery, and limitation/error behavior. No filler or repetition.

    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 single-required-parameter lookup with no output schema, the description covers the essential invocation context: purpose, output format, auto-discovery, and fallback error behavior. It is slightly short of a 5 because it doesn't hint at what fields the structured JSON contains or how the optional server override affects behavior, but those are minor for agent selection.

    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?

    All three parameters already have schema descriptions, so the baseline is 3. The description adds a little extra meaning by explaining the IANA bootstrap behavior behind the optional server override, but the timeout and domain parameters gain nothing beyond their schema text.

    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?

    Description opens with a specific verb and resource: 'Look up RDAP information for a domain.' It further clarifies the protocol as modern successor to WHOIS. However, it does not explicitly contrast itself with siblings like whois_lookup or whois_raw, so it misses the top tier.

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

    Usage Guidelines3/5

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

    The description implies when to use it by explaining RDAP is the modern successor to WHOIS and warns that 'Not all TLDs support RDAP.' It does not explicitly name alternatives or state 'use whois_lookup for legacy/fallback cases,' so guidance remains implied rather than explicit.

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

  • Behavior4/5

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

    With no annotations, the description carries the behavioral burden. It discloses the lookup order ('Tries RDAP first... falls back to WHOIS') and the return payload ('availability status and full registration data if registered'). It does not cover edge behavior such as timeouts, errors, or how method='both' changes behavior, but the core behavioral traits are transparent.

    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 short sentences, each earning its place: purpose, algorithm, and return value. The most important information is front-loaded, and there is no filler or redundancy.

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

    Completeness3/5

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

    The description gives a solid core outline but leaves gaps: no output schema exists, so the phrase 'availability status and full registration data' is vague about the actual response shape. It also does not mention error behavior, timeout implications, or how this relates to sibling tools like bulk_domain_check and whois_raw.

    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 all three parameters. The description adds the rationale that RDAP is faster and structured, which is useful, but it does not meaningfully extend the parameter semantics beyond what the schema provides.

    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 opens with a specific verb and resource: 'Check if a domain name is available for registration.' It also clarifies the tool's combined RDAP→WHOIS behavior and distinguishes it from raw lookup siblings by emphasizing availability status as the primary outcome.

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

    Usage Guidelines3/5

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

    The intended use case is implied clearly: use this when you need an availability check. However, the description does not explicitly mention alternatives like whois_lookup, rdap_lookup, bulk_domain_check, or when the lower-level tools should be preferred instead.

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

  • Behavior4/5

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

    The description clearly presents a read-only listing behavior and specifies what the agent should expect as output: TLDs plus their service URLs. It does not mention whether data is fetched live from IANA or cached, but for a simple informational tool this is a minor gap rather than a transparency failure.

    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 compact sentences with the key action and output front-loaded; the second sentence adds a practical use case. There is no filler or tautology.

    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?

    The tool is simple: one optional parameter, zero required parameters, and no output schema. The description covers what the tool shows and why it is useful, which is enough for an agent to select and invoke it, though it could optionally hint at output structure or data freshness.

    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?

    The schema fully documents the only parameter, 'filter', including its optional status and substring-matching behavior. The description itself adds no parameter details, which is acceptable because schema description coverage is 100%.

    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 the exact resource (IANA RDAP bootstrap data) and states the tool's output (list of TLDs supporting RDAP and their service URLs). This clearly differentiates it from sibling lookup tools like rdap_lookup or tld_info by emphasizing global coverage rather than per-domain or per-TLD lookup.

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

    Usage Guidelines3/5

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

    It provides a clear use case: understanding RDAP coverage across TLDs. However, it never states when not to use it or points to alternatives such as rdap_lookup or tld_info, so an agent must infer the correct choice from the sibling tool names.

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

  • Behavior4/5

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

    With no annotations, the description carries the behavioral burden. It discloses meaningful behavior: uses TCP port 43, auto-discovers the WHOIS server via IANA, follows thin-to-thick referrals, and returns both parsed and raw data. It does not cover error handling, rate limits, or network failure modes, but for a read-only public lookup tool this is strong transparency.

    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?

    Four short sentences, each earning its place: what it does, how servers are discovered, how referrals are handled, and what the return includes. Front-loaded with the core action and no filler.

    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?

    The description covers the tool's core operation, behavior, and return value shape, which matters because there is no output schema. Parameter semantics are already in the schema. It could be more complete by explicitly contrasting with rdap_lookup and whois_raw, but an agent has enough information to invoke this tool 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 all four parameters are already documented in the input schema. The description adds contextual value by mentioning IANA auto-discovery and referral following, but it does not need to re-explain parameter meanings. 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 uses a specific verb and resource: "Look up WHOIS information for a domain name using native WHOIS protocol." It clearly differentiates from siblings like rdap_lookup (different protocol) and whois_raw (raw-only output) by stating it returns "parsed structured data + raw WHOIS text" and follows referrals.

    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?

    The description gives clear context: this is the native-WHOIS lookup tool with automatic server discovery and referral following. It implies use for complete WHOIS data, but it does not explicitly state when to choose rdap_lookup or whois_raw instead. It is clear enough for selection, but lacks explicit exclusions or alternative routing.

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

  • Behavior4/5

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

    With no annotations, the description carries the burden and does disclose the key behavioral trait: the query is sent raw to a specified server and the response is returned unprocessed, meaning no parsing or transformation should be expected. It could add error or response-format detail, but the core behavior is explicit.

    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 carry all necessary information: the action, the unprocessed nature of the output, and the relevant use cases. Every sentence earns its place and the main action is front-loaded.

    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?

    For a simple raw network query tool, the description plus a fully documented schema is sufficient for an agent to select and invoke it. Required parameters are in the schema, defaults for port and timeout are provided, and the return value is defined as the unprocessed response.

    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 all four parameters with defaults and examples. The description adds no parameter-level semantics beyond the rwhois use case, so the baseline 3 applies.

    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 precise action ('Send a raw WHOIS query'), a specific target ('a specific server'), and the output ('return the unprocessed response'). This clearly distinguishes it from the sibling whois_lookup, which implies a standard, processed lookup.

    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?

    The description gives explicit use contexts: 'debugging, querying IP WHOIS (rwhois), or non-standard WHOIS servers.' This tells an agent when the raw variant is appropriate. It does not explicitly name the standard alternative, but the context is clear enough.

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

GitHub Badge

Glama performs regular codebase and documentation scans to:

  • Confirm that the MCP server is working as expected.
  • Confirm that there are no obvious security issues.
  • Evaluate tool definition quality.

Our badge communicates server capabilities, safety, and installation instructions.

Card Badge

domain-whois-mcp MCP server

Copy to your README.md:

Score Badge

domain-whois-mcp MCP server

Copy to your README.md:

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/kemalabuteliyte/domain-whois-mcp'

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