
Whodis (Domain Availability Checker)
Checks domain name availability using WHOIS lookups. Can verify multiple domains at once for registration status.
Provides domain availability checking through WHOIS lookups, enabling users to verify multiple domain names simultaneously for new projects or bulk status verification.
What it does
- Check single domain availability
- Verify multiple domains simultaneously
- Perform WHOIS lookups
- Run CLI commands for testing
- Generate structured availability reports
Best for
About Whodis (Domain Availability Checker)
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
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.
Tools (1)
PURPOSE: Checks the availability of one or more domain names. INPUT: An array of domain names. OUTPUT: A JSON object containing two arrays: 'available' (domains that appear to be unregistered) and 'unavailable' (domains that appear to be registered). 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. EXAMPLE: { "domains": ["google.com", "example-domain-that-is-likely-free-12345.com"] }
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
whoiserlibrary to perform WHOIS lookups and determine if domains appear to be available or registered. - MCP Tool Integration: Exposes a
check-domain-availabilitytool 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
.envfiles.
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) andunavailable(domains that appear to be registered).
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.{ "available": ["likely-available-domain123.xyz"], "unavailable": ["google.com"] } - 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:
- Run
npm run dev:server - Open http://localhost:5173 in your browser
- Use the UI to call the
check-domain-availabilitytool.
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:
- Ensure changes are committed and follow conventional commit messages (e.g.,
feat:,fix:,chore:). - Push changes to the
mainbranch. - The
ci-semantic-release.ymlworkflow will automatically build, test, version, and publish the package to npm.
License
Alternatives
Related Skills
Browse all skillsCheck domain name availability across multiple TLDs. Fast bulk checking for domain research and brainstorming.
Generates creative domain name ideas for your project and checks availability across multiple TLDs (.com, .io, .dev, .ai, etc.). Saves hours of brainstorming and manual checking.
UI design system toolkit for Senior UI Designer including design token generation, component documentation, responsive design calculations, and developer handoff tools. Use for creating design systems, maintaining visual consistency, and facilitating design-dev collaboration.
Guide for building TypeScript CLIs with Bun. Use when creating command-line tools, adding subcommands to existing CLIs, or building developer tooling. Covers argument parsing, subcommand patterns, output formatting, and distribution.
This skill should be used when the user asks to "follow red team methodology", "perform bug bounty hunting", "automate reconnaissance", "hunt for XSS vulnerabilities", "enumerate subdomains", or needs security researcher techniques and tool configurations from top bug bounty hunters.
Manage NEAR Name Service (.near domains) - check availability, register, resolve, and manage names.