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

domains-mcp

v0.1.1

Published

MCP server for checking domain availability via RDAP (with WHOIS fallback). Free, no API keys.

Readme

domains-mcp

npm version license

An MCP server that lets Claude (and other agents) check domain availability, look up registration details, and suggest available names across TLDs.

Availability comes entirely from free, open protocolsRDAP with a port-43 WHOIS fallback. No API keys, no accounts, no paid services.

Tools

| Tool | What it does | | --- | --- | | check_domain | Is a single domain available? Accepts bare names, URLs, and IDNs. | | check_domains | Bulk-check a list of domains (max 50, runs concurrently). | | suggest_domains | Given a base name, return the available options across a set of TLDs. | | domain_info | Registrar, status, creation/expiry dates, and nameservers for a domain. |

Each result is one of available, registered, or unknown. unknown means no source could answer definitively — the server never guesses an answer.

Install

The package is published on npm: domains-mcp.

Run it directly with npx (no install needed):

npx domains-mcp

…or install it globally:

npm install -g domains-mcp

Use with Claude

Add to your MCP client configuration (e.g. Claude Desktop's claude_desktop_config.json):

{
  "mcpServers": {
    "domains": {
      "command": "npx",
      "args": ["-y", "domains-mcp"]
    }
  }
}

Then ask things like: "Is acme-robotics.com available?", "Check these five domains for me," or "Suggest available domains for the name 'lumina'."

Local development

git clone https://github.com/fulldev-pl1/domains-mcp.git
cd domains-mcp
npm install
npm run build

Quick smoke test (no MCP client needed):

npm run check -- google.com some-free-name-12345.com github.io münchen.de

Configuration (all optional)

| Variable | Purpose | Default | | --- | --- | --- | | REQUEST_TIMEOUT_MS | Per-request network timeout | 5000 | | CACHE_TTL_SECONDS | TTL for the in-memory availability cache | 300 | | CONCURRENCY | Max concurrent lookups during bulk operations | 8 | | DEFAULT_TLDS | Comma-separated TLDs used by suggest_domains | com,net,org,io,ai,co,dev,app,xyz,me |

How it works

  1. The input domain is normalized (URL stripping, www. removal, IDN → Punycode, validation).
  2. RDAP: the TLD is resolved to its RDAP server via the IANA bootstrap registry. A 404 means available; a 200 returns full registration data.
  3. WHOIS fallback: if the TLD has no RDAP service (or RDAP is inconclusive), the server asks IANA for the TLD's WHOIS server, queries it, and pattern-matches the response.
  4. Results are cached briefly to cut latency and respect registry rate limits.

See DESIGN.md for the full architecture and the rationale behind these decisions.

Known limitations

Some ccTLD WHOIS servers (e.g. DENIC for .de) return restricted or unusually formatted responses; those may come back as unknown rather than a guess. RDAP/WHOIS report registration status, not whether a taken domain is for sale.

License

MIT