MCP server
by vinsidious
Check WHOIS for multiple domains with Whodis. Fast WHOIS lookup and search to verify domain availability for projects or
Checks domain name availability using WHOIS lookups. Can verify multiple domains at once for registration status.
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.
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.
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.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
According to our notes, Whodis (Domain Availability Checker) benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
We wired Whodis (Domain Availability Checker) into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
Whodis (Domain Availability Checker) reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
According to our notes, Whodis (Domain Availability Checker) benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
Whodis (Domain Availability Checker) is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
Useful MCP listing: Whodis (Domain Availability Checker) is the kind of server we cite when onboarding engineers to host + tool permissions.
Whodis (Domain Availability Checker) has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
Strong directory entry: Whodis (Domain Availability Checker) surfaces stars and publisher context so we could sanity-check maintenance before adopting.
Whodis (Domain Availability Checker) is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
We wired Whodis (Domain Availability Checker) into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
showing 1-10 of 65
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.
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.
whoiser library to perform WHOIS lookups and determine if domains appear to be available or registered.check-domain-availability tool for MCP clients (like AI assistants).whodis-mcp-server check-domain-availability ...) for direct usage and testing..env files.# Clone the repository
git clone https://github.com/vinsidious/whodis-mcp-server.git
cd whodis-mcp-server
# Install dependencies
npm install
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.
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.
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
# 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...>
# Run all tests
npm test
# Generate test coverage report
npm run test:coverage
# Lint code
npm run lint
# Format code with Prettier
npm run format
check-domain-availability{
"domains": ["example.com", "another-domain.net"]
}
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.Access the visual MCP Inspector to test the tool and view request/response details:
npm run dev:servercheck-domain-availability tool.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.
To publish updates to npm:
feat:, fix:, chore:).main branch.ci-semantic-release.yml workflow will automatically build, test, version, and publish the package to npm.Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.