by modelcontextprotocol-servers
Perform fast, type-safe WHOIS lookup and check domain registration details using Whoiser's TypeScript-powered server.
Performs WHOIS lookups to retrieve domain registration information, IP details, and ownership data. Ask your AI assistant to check domain availability, ownership, expiration dates, and other registration details without opening a browser.
Whoiser is a community-built MCP server published by modelcontextprotocol-servers that provides AI assistants with tools and capabilities via the Model Context Protocol. Perform fast, type-safe WHOIS lookup and check domain registration details using Whoiser's TypeScript-powered server. It is categorized under search web, developer tools. This server exposes 4 tools that AI clients can invoke during conversations and coding sessions.
You can install Whoiser 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
Whoiser is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Fetch and extract information from websites automatically
Example
Research competitor pricing, scrape product reviews, monitor news mentions
Automate 5-10 hours/week of manual web research
Track website changes, new content, price updates
Example
Monitor competitor blog for new posts, track stock availability, watch for pricing changes
Stay informed without manual checking, never miss important updates
Extract structured data from multiple websites
Example
Compile product listings from 10 e-commerce sites, aggregate job postings, collect real estate data
Build datasets 100x faster than manual copying
Share your MCP server with the developer community
Strong directory entry: Whoiser surfaces stars and publisher context so we could sanity-check maintenance before adopting.
Whoiser is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
We wired Whoiser into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
We evaluated Whoiser against two servers with overlapping tools; this profile had the clearer scope statement.
Useful MCP listing: Whoiser is the kind of server we cite when onboarding engineers to host + tool permissions.
Whoiser reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
Whoiser reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
According to our notes, Whoiser benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
I recommend Whoiser for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Strong directory entry: Whoiser surfaces stars and publisher context so we could sanity-check maintenance before adopting.
showing 1-10 of 27
Model Context Protocol server for whois lookups.
This MCP server allows AI agents like Claude Desktop, Cursor, Windsurf,.. etc to perform WHOIS lookups and retrieve domain details.
Purpose You can directly ask the AI to check if a domain is available, who owns it, when it was registered, and other important details. No need to go to browser and search.
What is a WHOIS Lookup? A WHOIS lookup is the process of querying a WHOIS database to retrieve registration details about a domain name, IP address, or autonomous system. It helps users find out who owns a domain, when it was registered, when it expires, and other important details.
What Information Can a WHOIS Lookup Provide?
When you perform a WHOIS lookup, you can retrieve details such as:
| Tool | Description |
|---|---|
whois_domain | Looksup whois information about the domain |
whois_tld | Looksup whois information about the Top Level Domain (TLD) |
whois_ip | Looksup whois information about the IP |
whois_as | Looksup whois information about the Autonomous System Number (ASN) |
Installation - Globally
Run the MCP server using npx:
npx -y @mcp-server/whois-mcp@latest
In your Cursor IDE
Cursor Settings > MCP+ Add New MCP ServerWhois Lookup (or any name you prefer)commandnpx -y @mcp-server/whois-mcp@latestInstallation - Project-specific
Add an .cursor/mcp.json file to your project:
{
"mcpServers": {
"whois": {
"command": "npx",
"args": [
"-y",
"@mcp-server/whois-mcp@latest"
]
}
}
}
Usage
Once configured, the whois tools will be automatically available to the Cursor AI Agent. You can:
Available Tools in MCP settingsAccess the MCP settings by clicking "Edit MCP Settings" in Roo Code settings or using the "Roo Code: Open MCP Config" command in VS Code's command palette.
{
"mcpServers": {
"whois": {
"command": "npx",
"args": [
"-y",
"@mcp-server/whois-mcp@latest"
]
}
}
}
# Install dependencies
pnpm install
# Build
pnpm build
To debug your server, you can use the MCP Inspector.
First build the server
pnpm build
Run the following command in your terminal:
# Start MCP Inspector and server with all tools
npx @modelcontextprotocol/inspector node dist/index.js
MIT
Interact with services that don't offer APIs
Example
Check form submissions, validate website functionality, test user flows
Automate interactions with any website, even without API
Prerequisites
Time Estimate
20-40 minutes including configuration and testing
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
MCP server handles HTTP requests, HTML parsing, JavaScript rendering (if headless browser), and returns structured data to Claude.
Protocols
Compatibility
✓ Use when
Use for research automation, content monitoring, data aggregation from multiple sources, and when official APIs don't exist. Best for read-only information gathering.
✗ Avoid when
Avoid for sites with APIs (use API instead), sites that explicitly forbid scraping, when data is copyrighted, or for login-required content without proper authorization.