Check if a brand name is free across domains, GitHub, npm and PyPI, and suggest available names.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
Search and recommend good domain names to buy. Describe a product or idea; the app brainstorms brandable names (AI + rule-based combos), checks real availability via RDAP, and returns a ranked list of buy candidates.
Source-available under the Elastic License 2.0 (SPDX-License-Identifier: Elastic-2.0) β see License.
Domain Finder is also a remote MCP server β check a brand name across domains and the GitHub / npm / PyPI namespaces from any MCP-capable agent.
https://domain-finder-theta.vercel.app/api/mcp (Streamable HTTP)check_name β check whether one or more candidate names are free across
domains and the GitHub / npm / PyPI namespaces, in a single call.generate_names β generate candidate names from a description, each
pre-checked for domain availability; feed the favorites into check_name.Cursor (~/.cursor/mcp.json) and any client with native Streamable-HTTP
support:
Claude Desktop (claude_desktop_config.json) β bridge a remote server with
mcp-remote:
Generation (lib/generate.ts) β merges three sources of candidates:
get, try, -ly, -hq, -app, β¦), shorter-first.generateObject
lib/hacks.ts): read the word across the dot β
delicio.us, bit.ly, recip.es. Built from IANA's full TLD list; needs
no API. These ignore the TLD filter by design (the word picks the zone), so
they have their own toggle..com before any gets a second TLD).Availability (lib/availability.ts) β RDAP behind a swappable
AvailabilityProvider interface. Resolves each TLD to its authoritative
registry RDAP server via the IANA bootstrap file (+ curated overrides), then
queries the registry directly. Retries on 429.
Status taxonomy (lib/rdap-status.ts) β "taken" isn't one thing. Modelled
on Domainr's taxonomy, each domain
gets a status and a coarse bucket:
| bucket | statuses | meaning |
|---|---|---|
registrable | available | buy it now, at retail |
dropping | deleting, expiring | in pendingDelete/redemption β backorder territory |
aftermarket | parked | owned, but nameservers say "for sale" |
unavailable | active, reserved | registered and in use |
unknown | unknown | no RDAP server for the TLD, or an error |
All derived free from RDAP's RFC 8056 status codes, expiration event, and
nameservers. deleting domains also get an estimatedDropAt (pendingDelete
is a fixed ~5-day window).
Ranking (lib/rank.ts) β a 0β100 score from availability (45), TLD
desirability (20), length (20), cleanliness/no-hyphens-or-digits (10), and a
brandability nudge (5, hack > AI > combo). Sorted by bucket first, then
score β so "buy it now" always outranks "might be gettable".
Swapping RDAP for a paid registrar API later (pricing + real buy flow) only
touches lib/availability.ts β nothing else in the pipeline knows the source.
Track a domain, get emailed when it enters the drop path, hand off to a
backorder service. This is a scheduler around availabilityProvider.check(),
not new availability logic.
lib/cadence.ts) β every domain carries a
next_check_at; the poller only touches what's due. Cadence follows status:
far-off active weekly β expiry <30d or redemption daily β pendingDelete
every 6h β hourly inside 24h of the estimated drop. RDAP load stays
proportional to how interesting a domain is, not how many watches exist.lib/db/schema.ts). A hundred
people watching the same short .com is one row, one RDAP call, one
transition, fanned out to a hundred inboxes. Load scales with unique domains
observed, not users Γ domains β which matters because registries don't sell
capacity.watch_events) is the source of truth. Alerts fire only
on a change, and alerts has unique(watch_id, event_id) so a cron retry
can't double-send.deleting (pendingDelete β the fixed ~5-day
window, i.e. the last moment a backorder can be placed) and available.
Everything else is logged and shown in the UI but stays silent.unknown is not a transition. A 429 or timeout means "we couldn't
tell", not "the domain changed" β the last known status stands, and the check
backs off exponentially (1h, 2h, 4h β¦ capped at a day)..co/.es/.at/.gg
have no public RDAP server, so a watch on them could never fire. Better to say
so than to accept it and silently never alert.FREE_WATCH_LIMIT in lib/watch.ts).Identity is an email plus an unguessable manage token β no accounts, no
sessions, no users table. The token rides in alert links and authenticates
/watch/<token>.
Without RESEND_API_KEY alerts are printed to the console rather than sent,
so the whole flow is drivable with no third-party signup. Trigger a poll by hand:
.github/workflows/poll.yml hits /api/cron/poll hourly. Vercel's Hobby cron
only fires once per day, which can burn most of a ~5-day pendingDelete
warning, so the schedule lives in GitHub Actions instead. Set the POLL_URL and
CRON_SECRET repository secrets. GHA cron is best-effort and can lag a few
minutes β fine for a multi-day warning, and nothing here depends on being
punctual.
lib/rdap-status.test.ts and lib/cadence.test.ts are pure. lib/poll.test.ts
drives the real database with a fake availability provider β pendingDelete
and redemptionPeriod are too rare in the wild to find on demand, and they're
exactly what this feature exists to catch. It skips when DATABASE_URL is unset.
Search works with no configuration β availability (RDAP) and rule-based
generation need no keys. To enable AI brainstorming, copy .env.example to
.env.local and set an AI Gateway key:
The watchlist is the only part that needs a database; search keeps working
without one (getDb() is lazy and only throws when a watch route calls it).
See Watchlist above.
POST /api/search
OVERRIDES (lib/availability.ts): .io/.me/.sh/.ac,
.de, .us. No reachable endpoint was found for .co/.es/.at/.gg, so
those report unknown rather than guess. Add more if you find them.parked proves nothing. Real aftermarket data needs a paid source.backorderUrl() points at DropCatch for dropping domains.
Swapping in affiliate links is a one-line change in app/page.tsx.Source-available under the Elastic License 2.0 (SPDX-License-Identifier: Elastic-2.0). You may inspect, self-host, and modify the code freely. What
you may not do is provide it to third parties as a hosted or managed
service that exposes a substantial set of its features β i.e. running it as a
competing hosted service is not permitted. Full terms in LICENSE.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/domain-finder)<a href="https://allmcps.com/mcp/domain-finder"><img src="https://allmcps.com/api/badge/domain-finder?style=directory" alt="Domain Finder on AllMCPs" /></a>