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

temper-domains

v0.3.0

Published

Search domain availability from your terminal

Readme


Why

AI coding tools can't check if a domain is available. Claude suggests a name, you open a browser, search manually, come back — the flow breaks every time.

temper fixes this. One command. 30 TLDs. Under 2 seconds.

Features

  • Private — CLI and MCP queries run on your machine. No tracking, no telemetry. The hosted web demo uses a server-side API route for live checks.
  • Fast — checks 30 TLDs by default with a 3s timeout. 59 with --extended.
  • MCP native — Codex, Claude Code, Claude Desktop, and Cursor can search domains directly.
  • Keyboard-first — vim-style navigation, single-key registrar selection.
  • Pipe-friendly--format json for scripting and automation.
  • Themeable — 7 built-in themes (5 dark + 2 light).
  • Open source — Apache 2.0. Zero telemetry.

Install

# Homebrew (macOS/Linux) — no runtime needed
brew install jongjinchoi/temper-domains/temper

# Or run from source (requires Bun or Node.js >= 18)
bun install && bun run src/index.ts search <name>

Usage

$ temper --help

Usage: temper [options] [command]

Never leave your terminal to find a domain.

Commands:
  search [options] <queries...>  Search domain availability across TLDs
  suggest [options] [query]      Generate name combinations and check availability
  whois <domain>                 Show detailed WHOIS/RDAP info for a domain
  init                           Set up temper (registrar + theme)
  history                        Show search history
  watch <domain>                 Add a domain to watchlist
  list                           Show watchlist with current availability
  show-presets                   Show available TLD presets
  config                         Manage temper configuration
  mcp                            Start MCP server over stdio

Keyboard shortcuts

| Key | Action | |-----|--------| | j/k | Move up/down | | Enter | Buy domain / select | | i | WHOIS/RDAP detail | | / | Filter results | | a | Add to watchlist | | s | Suggest combinations | | h | Search history | | w | Watchlist | | esc | Back | | q | Quit |

Search

temper search myproject                          # 30 default TLDs
temper search myproject --extended               # 59 TLDs
temper search myproject --tlds com,dev,io         # specific TLDs
temper search myproject --tld-preset tech         # preset: tech, popular, startup, cheap
temper search myproject -a                        # available only
temper search myproject -t 5                      # 5s timeout (default: 3)
temper search myproject --format json             # JSON output for piping
temper search localhoston writeholt tightship     # multiple keywords

Navigate with j/k, press Enter to buy, a to add to watchlist, / to filter. Press s for suggestions, h for history, w for watchlist. q to quit.

TLD Presets

temper show-presets

  popular    com, net, org, io, co, app, dev, ai, me
  tech       io, ai, dev, app, gg, sh, tech, cloud, digital
  startup    com, io, co, ai, app, dev, xyz, so, gg
  cheap      xyz, fun, lol, top, site, online, store, shop, club

JSON output

temper search localhoston --format json | jq '.[] | select(.status == "available") | .domain'

Whois

Look up detailed WHOIS/RDAP information for any domain. In search view, press i on any domain.

temper whois example.com                         # TUI view
temper whois example.com --format json           # JSON output

Shows registrar, registration/expiry dates, nameservers, DNSSEC status, and EPP status codes. Uses RDAP (RFC 9083) when available, falls back to WHOIS.

Suggest

Generate name combinations and check .com availability. Press Enter on any name to check all 30 TLDs.

temper suggest localhoston                            # default prefixes + suffixes
temper suggest localhoston -p super,mega -s io,lab    # custom prefixes/suffixes
  BASE
    localhoston          ✗ taken

  PREFIX
    getlocalhoston       ✓ available
    uselocalhoston       ✓ available
    trylocalhoston       ✓ available
    ...

  SUFFIX
    localhostonapp       ✓ available
    localhostonlabs      ✓ available
    ...

  Summary: 13 available · 2 taken

Default prefixes: get use try my go join Default suffixes: app labs hq ly dev hub run kit

Watchlist & History

temper history                # interactive search history (re-search, remove)
temper list                   # interactive watchlist (refresh, remove)
temper watch localhoston.com  # add a domain to watchlist from CLI

In search view, press a to add a domain to your watchlist, h to view history, w to view watchlist.

Setup

temper init                           # first-time setup (registrar + theme)
temper config theme seoul-night       # change theme
temper config theme --list            # list themes

temper runs as a local MCP server. Your AI assistant searches domains without you switching context.

Prerequisite: Install temper first — brew install jongjinchoi/temper-domains/temper

Codex

Codex stores MCP server configuration in ~/.codex/config.toml and shares it between the Codex CLI and IDE extension. Add temper with:

codex mcp add temper -- temper mcp

In the Codex TUI, run /mcp to confirm the server is active.

You can also edit ~/.codex/config.toml directly:

[mcp_servers.temper]
command = "temper"
args = ["mcp"]

Claude Code

Pick one based on how you want temper available:

All projects (recommended):

claude mcp add --scope user --transport stdio temper -- temper mcp

Current folder only:

claude mcp add --transport stdio temper -- temper mcp

Claude Desktop

Settings → Developer → Edit Config:

{
  "mcpServers": {
    "temper": {
      "command": "temper",
      "args": ["mcp"]
    }
  }
}

Restart Claude Desktop after saving.

Cursor

Settings → Tools & Integrations → New MCP Server (command type):

{
  "mcpServers": {
    "temper": {
      "command": "temper",
      "args": ["mcp"]
    }
  }
}

Windsurf

Edit ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "temper": {
      "command": "temper",
      "args": ["mcp"]
    }
  }
}

VS Code (Cline)

Command Palette → MCP: Add server → stdio → temper mcp


Tools:

| Tool | Description | |------|-------------| | search_domain | Check 30 or 59 TLDs for one bare name | | search_names | Check up to 8 bare name candidates across default or extended TLDs | | suggest_domain | 15 name combinations × 5 TLDs | | check_domain_availability | Verify explicit full domains only (up to 100) | | whois_domain | Detailed WHOIS/RDAP info (registrar, dates, nameservers) | | open_registrar | Open purchase page in browser |

Example: Brainstorm from scratch

You:    "I'm building a health management app. Suggest domain names."

Claude: [generates candidates: wellbi, vitalo, medra, healix, ...]
        [calls search_names for generated bare names]
        [calls suggest_domain for top picks]

        Top Pick: wellbi.app
        - Short, pronounceable, .app TLD fits mobile apps
        - getwellbi.com also available

        ⚠ Medra means "fear" in Spanish — avoid for global use
        💡 Check @wellbi on social media before registering

Example: Search with a name

You:    "Find domains for localhoston"

Claude: [calls search_domain]
        localhoston.com is taken, but these are available:
        - localhoston.dev, localhoston.app, localhoston.io

For names without a TLD, temper checks the default 30 TLDs first and treats .com as the first result to interpret. Use extended search only when the default set is not enough.

Example: Check specific domains

You:    "Check getlocalhoston.com and trylocalhoston.com"

Claude: [calls check_domain_availability]
        ✓ getlocalhoston.com — available
        ✓ trylocalhoston.com — available

Example: Buy a domain

You:    "Open Cloudflare for getlocalhoston.com"

Claude: [calls open_registrar]
        Done. Cloudflare opened in your browser.

When temper runs as a local CLI or MCP server, queries run on your machine. The hosted website demo uses its own API route for live checks.

| | | |---|---| | Temper Forge | Seoul Night | | Catppuccin Mocha | Dracula | | Default | Catppuccin Latte | | Rosé Pine Dawn | |

| Theme | | |-------|---| | Temper Forge | 🔥 Flame orange on dark steel | | Seoul Night | 🌃 Neon pink, Han River blue | | Catppuccin Mocha | 🎨 Soft pastels | | Dracula | 🧛 High contrast | | Default | ⚫ Terminal native | | Catppuccin Latte | ☀️ Pastel light | | Rosé Pine Dawn | 🌅 Warm natural light |

Contributing

git clone https://github.com/jongjinchoi/temper-domains.git
cd temper-domains
bun install
bun run src/index.ts search <name>    # run locally
bun test                               # run tests

Issues and pull requests are welcome.

License

Apache 2.0 — see LICENSE