npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

find-domains

v1.1.1

Published

Find available domain names from word combinations using WHOIS lookup

Downloads

35

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-domains

MCP 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 io

Searches: 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 hub

Searches: agentmesh.com, agenthub.com, aimesh.com, aihub.com

With hyphens:

npx find-domains --words agent --words mesh --hyphen

Searches: agentmesh.com, agent-mesh.com

Multiple TLDs:

npx find-domains --words agent --words mesh --tlds com ai io dev

Searches: agentmesh.com, agentmesh.ai, agentmesh.io, agentmesh.dev

Three positions:

npx find-domains --words my --words agent --words hub mesh

Searches: myagenthub.com, myagentmesh.com

Prefix + noun:

npx find-domains --words my get --words agent tool

Searches: myagent.com, mytool.com, getagent.com, gettool.com

Adjective + noun:

npx find-domains --words quick easy --words docs notes

Searches: quickdocs.com, quicknotes.com, easydocs.com, easynotes.com