tldx-mcp
An MCP server for tldx that allows AI agents to brainstorm brand names and instantly verify domain availability using lightning-fast, concurrent RDAP lookups.
README

tldx
tldx helps you brainstorm available domain names fast.
tldx openai -p get,use -s ly,hub -t com,io,ai --only-available
✔️ getopenaily.com is available
✔️ useopenaihub.io is available
...

📚 Table of Contents
⚡ Features
- 🔍 Smart keyword-based domain permutations (prefixes, suffixes, TLDs)
- 🎯 Regex pattern support for generating domain combinations (e.g., all 3-letter domains)
- 🚀 Fast and concurrent availability checks with RDAP
- 📤 Streams results as they're found
- 📦 Multiple output formats:
text,json,json-stream,json-array,csv,grouped,grouped-tld - 🔧 TLD presets to quickly select curated TLD sets
- 📏 Optional filtering by domain length
- 🤖 MCP server (
tldx mcp) for AI agent integration
🛠️ Usage
Usage:
tldx [keywords] [flags]
tldx [command]
Available Commands:
completion Generate the autocompletion script for the specified shell
help Help about any command
mcp Start an MCP (Model Context Protocol) server over stdio
show-tld-presets Show available TLD presets
Flags:
--dry-run Print domains that would be checked without making network calls
-f, --format string Format of output (text, json, json-stream, json-array, csv, grouped, grouped-tld) (default "text")
-h, --help help for tldx
-i, --input string File to read keywords from. Use "-" to read from stdin.
-l, --limit int Stop after finding this many available domains (0 = no limit)
-m, --max-domain-length int Maximum length of domain name (default 64)
--no-color Disable colored output
-a, --only-available Show only available domains
-p, --prefixes strings Prefixes to add (e.g. get,my,use)
-r, --regex Enable regex pattern matching for domain keywords
--show-stats Show statistics at the end of execution
-s, --suffixes strings Suffixes to add (e.g. ify,ly)
--tld-preset string Use a tld preset (e.g. popular, tech)
-t, --tlds strings TLDs to check (e.g. com,io,ai)
-v, --verbose Show verbose output
--version version for tldx
Exit code 2 is returned when --only-available is set but no available domains are found.
🔗 Examples
Domain Availability
$ tldx google
❌ google.com is not available
$ tldx google youtube reddit
❌ reddit.com is not available
❌ google.com is not available
❌ youtube.com is not available
Regex Domain Selection
Use regex patterns with the --regex flag to generate domain combinations based on patterns:
# Check all 3-letter .com domains
$ tldx '[a-z]{3}' --regex --tlds com --only-available
✔️ aaa.com is available
✔️ aab.com is available
...
# Check all 2-letter domains with specific TLDs
$ tldx '[a-z]{2}' --regex --tlds io,ai --only-available
✔️ qa.io is available
✔️ zx.ai is available
...
# Combine patterns with prefixes
$ tldx '[a-z]{2}' --regex --prefixes my,get --tlds app --only-available
✔️ myaa.app is available
✔️ getab.app is available
...
Note: Patterns generating more than 500,000 combinations will be skipped.
Presets
$ tldx google --tld-preset popular
❌ google.com is not available
❌ google.io is not available
...
$ tldx google --tld-preset geo
❌ google.au is not available
❌ google.de is not available
❌ google.us is not available
...
You can see all available presets:
$ tldx show-tld-presets
TLD Presets:
all (use all available TLDs)
cheap pw fun icu top xyz blog info shop site click
space store online website
popular ai me app com dev net org
tech io ai gg app dev tech codes tools cloud games
software digital network security systems
data technology
...
Permutations
$ tldx google --prefixes get,my --suffixes ly,hub --tlds com,io,ai
✔️ mygooglely.com is available
✔️ getgooglely.ai is available
❌ mygoogle.ai is not available
...
Brace Expansion (macOS, Linux)
Brace expansion works out of the box in bash/zsh:
tldx {get,use}{tldx,domains} {star,fork}ongithub
✔️ gettldx.com is available
✔️ usetldx.com is available
❌ getdomains.com is not available
...
Show Only Available Domains
$ tldx google reddit facebook -p get,my -s ly,hub -t com,io,ai --only-available
✔️ getgooglely.ai is available
✔️ getreddithub.com is available
...
Limit Results
$ tldx stripe -p get,use -t com,io,ai --only-available --limit 3
✔️ getstripe.io is available
✔️ usestripe.ai is available
✔️ stripe.ai is available
Dry Run
$ tldx stripe -p get,use -t com,io --dry-run
Would check 6 domain(s):
stripe.com
stripe.io
getstripe.com
...
Input from File or Stdin
$ tldx --input keywords.txt --tlds com,io --only-available
$ echo -e "stripe\natlas\nlinear" | tldx --input - --tlds com,io --only-available
Output Formats
By default output is human-readable (text). Change it with --format / -f.
Color is automatically disabled when stdout is not a terminal.
JSON Array
$ tldx openai -p use -s ly -t io --format json-array
[
{ "domain": "useopenaily.io", "available": true, "keyword": "openai", "prefix": "use", "suffix": "ly", "tld": "io" },
{ "domain": "openai.io", "available": false, "keyword": "openai", "tld": "io" },
...
]
With --show-stats the output is wrapped in an object:
$ tldx openai -p use -s ly -t io --format json-array --show-stats
{
"results": [ ... ],
"stats": { "total": 4, "available": 1, "not_available": 2, "errored": 1 }
}
Results include keyword, prefix, suffix, and tld metadata (empty fields are omitted).
JSON Stream
$ tldx openai -p use -s ly -t io --format json-stream
{"domain":"useopenaily.io","available":true,"keyword":"openai","prefix":"use","suffix":"ly","tld":"io"}
{"domain":"openai.io","available":false,"keyword":"openai","tld":"io"}
CSV
$ tldx openai -p use -s ly -t io --format csv
domain,available,keyword,prefix,suffix,tld,details,error
useopenaily.io,true,openai,use,ly,io,
openai.io,false,openai,,,io,
Grouped by Keyword
$ tldx openai google -p get,use -t com,io --format grouped
google
getgoogle.com
getgoogle.io
google.com
google.io
usegoogle.com
usegoogle.io
openai
getopenai.com
getopenai.io
openai.com
openai.io
useopenai.com
useopenai.io
Grouped by TLD
$ tldx openai google -p get,use -t com,io --format grouped-tld
.com
getgoogle.com
getopenai.com
google.com
openai.com
usegoogle.com
useopenai.com
.io
getgoogle.io
getopenai.io
google.io
openai.io
usegoogle.io
useopenai.io
MCP
tldx includes an MCP server for use with AI agents and IDEs.
tldx mcp
Example config (mcp.json / Claude Desktop / VS Code):
{
"mcpServers": {
"tldx": {
"command": "tldx",
"args": ["mcp"]
}
}
}
Available tools: check_domain, check_domains, generate_and_check, list_tld_presets.
📦 Installation
macOS (Homebrew)
brew install tldx
or
brew tap brandonyoungdev/tldx
brew install tldx
Windows (winget)
winget install --id=brandonyoungdev.tldx -e
Arch Linux (AUR)
Two options are available for Arch Linux users:
Linux and Windows (Manual)
Visit the Releases page.
Download the archive for your OS and architecture:
- macOS / Linux:
tldx_<version>_<os>_<arch>.tar.gz - Windows:
tldx_<version>_windows_<arch>.zip
tar -xzf tldx_<version>_<os>_<arch>.tar.gz
mv tldx /usr/local/bin/
Go (Install from Source)
go install github.com/brandonyoungdev/tldx@latest
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。