Looks up WHOIS information about a domain
Looks up WHOIS information about a Top Level Domain (TLD)
Looks up WHOIS information about an IP address
Looks up WHOIS information about an Autonomous System Number (ASN)
The WHOIS Lookup MCP server enables AI agents to perform WHOIS lookups directly within their workflow. It allows users to check domain availability, ownership details, registration dates, and other important information without leaving their development environment. This tool is particularly useful for developers, cybersecurity professionals, and anyone who needs to quickly verify domain or IP information.
The WHOIS Lookup MCP server provides a seamless way to perform WHOIS lookups directly through AI agents like Claude Desktop, Cursor, Windsurf, and others. This tool eliminates the need to switch to a browser for checking domain information, making your workflow more efficient.
WHOIS lookups provide valuable information about domains, IPs, and autonomous systems, including:
Global Installation
npx -y @bharathvaj/whois-mcp@latest
Cursor Settings
> MCP
+ Add New MCP Server
WHOIS Lookup
(or any name you prefer)command
npx -y @bharathvaj/whois-mcp@latest
Project-specific Installation
Add an .cursor/mcp.json
file to your project with the following configuration:
{
"mcpServers": {
"whois": {
"command": "npx",
"args": [
"-y",
"@bharathvaj/whois-mcp@latest"
]
}
}
}
Access 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.
Add the following configuration:
{
"mcpServers": {
"whois": {
"command": "npx",
"args": [
"-y",
"@bharathvaj/whois-mcp@latest"
]
}
}
}
The WHOIS Lookup MCP server is compatible with Claude Desktop. Simply install and run the server as described above, and Claude will be able to access the WHOIS lookup functionality.
Once configured, the WHOIS tools will be automatically available to your AI agent. You can:
For example, you might ask:
The AI agent will automatically use the appropriate WHOIS tool to retrieve the requested information.
To debug the server, you can use the MCP Inspector:
pnpm build
npx @modelcontextprotocol/inspector node dist/index.js
This will allow you to inspect the requests and responses between your AI agent and the WHOIS MCP server.