developer-tools

Whodis (Domain Availability Checker)

by vinsidious

Check WHOIS for multiple domains with Whodis. Fast WHOIS lookup and search to verify domain availability for projects or

Provides domain availability checking through WHOIS lookups, enabling users to verify multiple domain names simultaneously for new projects or bulk status verification.

github stars

4

No API key neededBulk domain checkingCLI interface included

best for

  • / Developers planning new projects
  • / Domain investors researching availability
  • / Bulk domain status verification
  • / Automated domain monitoring workflows

capabilities

  • / Check single domain availability
  • / Verify multiple domains simultaneously
  • / Perform WHOIS lookups
  • / Run CLI commands for testing
  • / Generate structured availability reports

what it does

Checks domain name availability using WHOIS lookups. Can verify multiple domains at once for registration status.

about

Whodis (Domain Availability Checker) is a community-built MCP server published by vinsidious that provides AI assistants with tools and capabilities via the Model Context Protocol. Check WHOIS for multiple domains with Whodis. Fast WHOIS lookup and search to verify domain availability for projects or It is categorized under developer tools. This server exposes 1 tool that AI clients can invoke during conversations and coding sessions.

how to install

You can install Whodis (Domain Availability Checker) in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.

license

MIT

Whodis (Domain Availability Checker) is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.

readme

Whodis MCP Server

This project provides a Model Context Protocol (MCP) server specifically designed to check the availability of domain names using WHOIS lookups. It allows AI assistants or other tools to integrate domain availability checks into their workflows.


Overview

What is MCP?

Model Context Protocol (MCP) is an open standard that allows AI systems to securely and contextually connect with external tools and data sources. This server implements the MCP standard to provide domain availability information.

Features

  • Domain Availability Checks: Uses the whoiser library to perform WHOIS lookups and determine if domains appear to be available or registered.
  • MCP Tool Integration: Exposes a check-domain-availability tool for MCP clients (like AI assistants).
  • CLI Interface: Includes a command-line interface (whodis-mcp-server check-domain-availability ...) for direct usage and testing.
  • Structured Logging: Provides detailed logging for debugging and monitoring.
  • Configurable: Supports configuration via environment variables or .env files.

Getting Started

Prerequisites

  • Node.js (>=18.x): Download
  • Git: For version control

Step 1: Clone and Install

# Clone the repository
git clone https://github.com/vinsidious/whodis-mcp-server.git
cd whodis-mcp-server

# Install dependencies
npm install

Step 2: Run Development Server

Start the server in development mode to interact with it via the MCP Inspector:

npm run dev:server

This starts the MCP server and enables the MCP Inspector at http://localhost:5173, where you can test the check-domain-availability tool.


Step 3: Test the Tool via CLI

Run the domain availability checker directly from the command line:

# Using CLI in development mode
npm run dev:cli -- check-domain-availability example.com non-existent-domain-12345.org

# Or run the built version
npm run start:cli -- check-domain-availability google.com my-unique-idea.dev

The CLI will output a JSON object containing available and unavailable arrays.


Architecture

This server follows a layered architecture:

src/
├── cli/              # Command-line interface logic
├── controllers/      # Business logic for domain checks
├── services/         # Interaction with the whoiser library
├── tools/            # MCP tool definition and argument validation
├── types/            # Shared type definitions
├── utils/            # Shared utilities (logging, errors, etc.)
└── index.ts          # Main entry point for server and CLI

Development Guide

Development Scripts

# Start MCP server in development mode (with MCP Inspector)
npm run dev:server

# Run CLI commands in development mode
npm run dev:cli -- check-domain-availability <domains...>

# Build the project for production
npm run build

# Start MCP server in production mode (requires MCP client)
npm run start:server

# Run CLI commands using the production build
npm run start:cli -- check-domain-availability <domains...>

Testing

# Run all tests
npm test

# Generate test coverage report
npm run test:coverage

Code Quality

# Lint code
npm run lint

# Format code with Prettier
npm run format

MCP Tool: check-domain-availability

  • PURPOSE: Checks the availability of one or more domain names.
  • INPUT: An array of domain names.
    {
    	"domains": ["example.com", "another-domain.net"]
    }
    
  • OUTPUT: A JSON object containing two arrays: available (domains that appear to be unregistered) and unavailable (domains that appear to be registered).
    {
    	"available": ["likely-available-domain123.xyz"],
    	"unavailable": ["google.com"]
    }
    
    Note: Availability checks depend on WHOIS server responses and might not be 100% accurate for all TLDs or due to temporary network issues. Domains where lookup failed are omitted.
  • WHEN TO USE: Use this tool when you need to determine if specific domain names can potentially be registered.

Debugging

MCP Inspector

Access the visual MCP Inspector to test the tool and view request/response details:

  1. Run npm run dev:server
  2. Open http://localhost:5173 in your browser
  3. Use the UI to call the check-domain-availability tool.

Server Logs

Enable debug logs for detailed output:

# Set environment variable
DEBUG=true npm run dev:server

# Or set DEBUG=true in your .env file

Logs are also saved to files in ~/.mcp/data/whodis-mcp-server.*.log.


Publishing

To publish updates to npm:

  1. Ensure changes are committed and follow conventional commit messages (e.g., feat:, fix:, chore:).
  2. Push changes to the main branch.
  3. The ci-semantic-release.yml workflow will automatically build, test, version, and publish the package to npm.

License

ISC License

FAQ

What is the Whodis (Domain Availability Checker) MCP server?
Whodis (Domain Availability Checker) is a Model Context Protocol (MCP) server profile on explainx.ai. MCP lets AI hosts (e.g. Claude Desktop, Cursor) call tools and resources through a standard interface; this page summarizes categories, install hints, and community ratings.
How do MCP servers relate to agent skills?
Skills are reusable instruction packages (often SKILL.md); MCP servers expose live capabilities. Teams frequently combine both—skills for workflows, MCP for APIs and data. See explainx.ai/skills and explainx.ai/mcp-servers for parallel directories.
How are reviews shown for Whodis (Domain Availability Checker)?
This profile displays 10 aggregated ratings (sample rows for discoverability plus signed-in user reviews). Average score is about 4.5 out of 5—verify behavior in your own environment before production use.
MCP server reviews

Ratings

4.510 reviews
  • Shikha Mishra· Oct 10, 2024

    Whodis (Domain Availability Checker) is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.

  • Piyush G· Sep 9, 2024

    We evaluated Whodis (Domain Availability Checker) against two servers with overlapping tools; this profile had the clearer scope statement.

  • Chaitanya Patil· Aug 8, 2024

    Useful MCP listing: Whodis (Domain Availability Checker) is the kind of server we cite when onboarding engineers to host + tool permissions.

  • Sakshi Patil· Jul 7, 2024

    Whodis (Domain Availability Checker) reduced integration guesswork — categories and install configs on the listing matched the upstream repo.

  • Ganesh Mohane· Jun 6, 2024

    I recommend Whodis (Domain Availability Checker) for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.

  • Oshnikdeep· May 5, 2024

    Strong directory entry: Whodis (Domain Availability Checker) surfaces stars and publisher context so we could sanity-check maintenance before adopting.

  • Dhruvi Jain· Apr 4, 2024

    Whodis (Domain Availability Checker) has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.

  • Rahul Santra· Mar 3, 2024

    According to our notes, Whodis (Domain Availability Checker) benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.

  • Pratham Ware· Feb 2, 2024

    We wired Whodis (Domain Availability Checker) into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.

  • Yash Thakker· Jan 1, 2024

    Whodis (Domain Availability Checker) is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.