find-domains
v1.1.1
Published
Find available domain names from word combinations using WHOIS lookup
Downloads
35
Maintainers
Readme
Find Domains
Can't find an available domain name? This tool generates combinations from your word lists and checks which ones are available for purchase.
Installation
# No installation required
npx find-domains --words agent --words mesh fabric --tlds com ai io
# Or install globally
npm install -g find-domainsMCP Server Mode
Run as an MCP server to integrate with Claude Desktop or other MCP clients:
Usage with Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"find-domains": {
"command": "npx",
"args": ["find-domains", "--mcp"]
}
}
}Available Tools
check_domain - Check if a specific domain is available
- Input:
domain(string) - Full domain name like "example.com"
find_domains - Generate and check domain combinations
- Input:
permutations(array of arrays) - Word groups - Input:
tlds(array, optional) - Domain extensions (default: ["com"]) - Input:
includeHyphen(boolean, optional) - Include hyphenated versions - Input:
concurrency(number, optional) - Parallel checks (default: 10)
Usage
npx find-domains --words agent --words mesh fabric --tlds com ai ioSearches: agentmesh.com, agentmesh.ai, agentfabric.com, agentfabric.ai, etc.
Options
--words - Think of each --words flag as a slot in your domain name. You can provide multiple word options for each slot, and the tool will try all combinations.
For example: --words quick fast --words site app will check quicksite, quickapp, fastsite, and fastapp.
--tlds - Which domain extensions to check (.com, .ai, .io, etc.). By default it only checks .com domains.
--hyphen - Want to check both "quicksite" and "quick-site"? Add this flag to include hyphenated versions.
--concurrency - How many domains to check at once. Higher = faster, but some registries might rate limit you. Default is 10.
Examples
Multiple word groups:
npx find-domains --words agent ai --words mesh hubSearches: agentmesh.com, agenthub.com, aimesh.com, aihub.com
With hyphens:
npx find-domains --words agent --words mesh --hyphenSearches: agentmesh.com, agent-mesh.com
Multiple TLDs:
npx find-domains --words agent --words mesh --tlds com ai io devSearches: agentmesh.com, agentmesh.ai, agentmesh.io, agentmesh.dev
Three positions:
npx find-domains --words my --words agent --words hub meshSearches: myagenthub.com, myagentmesh.com
Prefix + noun:
npx find-domains --words my get --words agent toolSearches: myagent.com, mytool.com, getagent.com, gettool.com
Adjective + noun:
npx find-domains --words quick easy --words docs notesSearches: quickdocs.com, quicknotes.com, easydocs.com, easynotes.com
