find_available_domains_by_pattern
Enumerate verified available domains matching a prefix, suffix, or substring pattern across multiple TLDs, excluding taken names.
Instructions
Enumerate every currently available domain matching a keyword pattern (starts-with, ends-with, contains, or all) across chosen TLDs. Use this when the user already has a keyword and wants an exhaustive list, not invented brandables. Do not use to brainstorm creative names (use find_available_domains) or to inspect one known domain (use check_domain). Every candidate is verified live against the registry; taken names are omitted. Default TLDs: .com and .net. Read-only; does not register domains.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tlds | No | TLDs to enumerate. Default ['com','net']. | |
| limit | No | Max available domains to return (1-200). Default 60. | |
| keyword | Yes | Keyword(s) to build around, e.g. 'bear' or 'bear, bigbear' (comma/or-separated). | |
| position | No | Where the keyword sits in the label: starts-with, ends-with, contains, or all. Default 'all'. |