Skip to main content
Glama

find_available_domains_by_pattern

Exhaustively enumerate EVERY available domain matching a keyword PATTERN, across TLDs — the thing most domain tools/MCPs can't do. Give a keyword (or several) and a position: 'starts' (keyword+word, e.g. Bearoak), 'ends' (word+keyword, e.g. Oakbear), 'contains' (keyword inside a longer invented word, e.g. Oakbearen), or 'all'. Every candidate is verified live against the registry; only AVAILABLE domains are returned, grouped by TLD. Checks .com and .net by default.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tldsNoWhich TLDs to enumerate. Default ['com','net'].
limitNoMax available domains to return (1-200). Default 60.
keywordYesKeyword(s) to build around, e.g. 'bear' or 'bear, bigbear' (comma/or-separated for several).
positionNoWhere the keyword sits: starts-with, ends-with, contains, or all. Default 'all'.

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations provided, the description carries the full transparency burden. It discloses live registry verification, that only available domains are returned, grouping by TLD, and default TLDs. It doesn't mention rate limits or error handling, but for a simple read-only enumeration tool, this is strong behavioral disclosure, earning a 4.

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 efficiently convey the purpose, differentiator, position examples, behavioral verification note, and default TLDs. It is front-loaded with the core value proposition and contains no filler—every sentence earns its place.

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 4-parameter tool with no output schema, the description covers the operation, parameter behavior, defaults, and output grouping ('grouped by TLD'). It doesn't specify the exact return structure, but given the straightforward nature, it is sufficient for an agent to invoke the tool correctly—slightly more detail on return format would push it to a 5.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema covers 100% of parameters, so baseline is 3. The description adds concrete examples for the 'position' enum (e.g., 'starts' → 'Bearoak') and clarifies comma-separated keyword lists, which meaningfully supplements the bare schema definitions and justifies a 4.

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 action ('exhaustively enumerate') on a specific resource ('available domain matching a keyword PATTERN') and immediately differentiates it from other domain tools by highlighting its exhaustive, cross-TLD nature. It also explains the pattern positions, making the tool's function unmistakable even without opening the schema.

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?

It clearly implies its unique niche—exhaustive pattern-based enumeration across TLDs, contrasting with 'most domain tools'—and gives usage context with positions and defaults. However, it does not explicitly name sibling alternatives (check_domain, find_available_domains) or specify when NOT to use this tool, so it stops short of a 5.

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.4/5.0
Disambiguation4/5

check_domain is clearly distinct from the other two, but find_available_domains and find_available_domains_by_pattern both return available domains and could be confused without reading the descriptions carefully. The descriptions do separate them by generation vs pattern enumeration, so the ambiguity is limited.

Naming Consistency5/5

All tool names use a consistent imperative verb + noun pattern in snake_case: check_domain, find_available_domains, find_available_domains_by_pattern. The longer name is still predictable and follows the same convention.

Tool Count5/5

Three tools is a well-scoped set for a domain search and due-diligence service: one for evaluating an existing domain, one for generating available brandable domains, and one for pattern-based enumeration. Each tool has a distinct job and earns its place.

Completeness4/5

The set covers the core domain workflow of discovering available domains and performing due diligence on a candidate. Minor gaps exist: there is no dedicated exact-domain availability check, and pattern enumeration defaults to only .com and .net.