Fire in da houseTop Tip:Paying $100+ per month for Perplexity, MidJourney, Runway, ChatGPT and other tools is crazy - get all your AI tools in one site starting at $15 per month with Galaxy AI Fire in da houseCheck it out free

whois-mcp

MCP.Pizza Chef: bharathvaj-ganesan

The whois-mcp is an MCP server that enables AI agents to perform WHOIS lookups to retrieve domain registration details such as ownership, registration date, and availability. It integrates with AI platforms like Claude Desktop and Cursor IDE, allowing users to query domain information directly through AI without manual browser searches. This server streamlines domain data retrieval for developers and businesses needing quick domain insights.

Use This MCP server To

Check domain availability via AI queries Retrieve domain ownership information instantly Get domain registration and expiration dates Integrate WHOIS data into AI-powered workflows Automate domain research in development pipelines Enable AI agents to answer domain-related questions

README

Whois MCP

Model Context Protocol server for whois lookups.

Whois MCP server

Cursor IDE Demo

cursor-demo.webm

Claude Desktop Demo

claude-demo.webm

Overview

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:

  • Domain Name – The specific domain queried
  • Registrar Name – The company managing the domain registration (e.g., GoDaddy, Namecheap)
  • Registrant Details – The name, organization, and contact details of the domain owner (unless protected by WHOIS privacy)
  • Registration & Expiry Date – When the domain was registered and when it will expire
  • Name Servers – The DNS servers the domain is using
  • Domain Status – Active, expired, locked, or pending deletion
  • Contact Information – Administrative, technical, and billing contacts (if not hidden)

Available Tools

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)

Using with Cursor

Installation - Globally

Run the MCP server using npx:

npx -y @bharathvaj/whois-mcp@latest

In your Cursor IDE

  1. Go to Cursor Settings > MCP
  2. Click + Add New MCP Server
  3. Fill in the form:
    • Name: Whois Lookup (or any name you prefer)
    • Type: command
    • Command: npx -y @bharathvaj/whois-mcp@latest

Installation - Project-specific

Add an .cursor/mcp.json file to your project:

{
  "mcpServers": {
    "whois": {
      "command": "npx",
      "args": [
        "-y",
        "@bharathvaj/whois-mcp@latest"
      ]
    }
  }
}

Usage

Once configured, the whois tools will be automatically available to the Cursor AI Agent. You can:

  1. The tool will be listed under Available Tools in MCP settings
  2. Agent will automatically use it when relevant
  3. You can explicitly ask Agent to send notifications

Using with Roo Code

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.

{
  "mcpServers": {
    "whois": {
      "command": "npx",
      "args": [
        "-y",
        "@bharathvaj/whois-mcp@latest"
      ]
    }
  }
}
  1. The whois capabilities will be available to Roo Code's AI agents

Development

# Install dependencies
pnpm install

# Build
pnpm build

Debugging the Server

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

License

MIT

whois-mcp FAQ

How does whois-mcp retrieve domain information?
It queries WHOIS databases to fetch domain registration details like owner, registration date, and status.
Can whois-mcp be integrated with multiple AI platforms?
Yes, it supports integration with AI agents such as Claude Desktop, Cursor IDE, and Windsurf.
Is it necessary to use a browser for WHOIS lookups with whois-mcp?
No, whois-mcp allows AI agents to perform WHOIS lookups directly, eliminating the need for manual browser searches.
What types of domain details can whois-mcp provide?
It provides domain ownership, registration and expiration dates, registrar info, and domain availability status.
Does whois-mcp support IP address WHOIS lookups?
Primarily designed for domain WHOIS lookups; IP address lookups depend on the underlying WHOIS database support.
How secure is the data handled by whois-mcp?
whois-mcp follows MCP principles ensuring scoped, secure, and observable interactions with WHOIS data sources.
Can whois-mcp be used in automated domain monitoring workflows?
Yes, it can be integrated into automated systems to monitor domain status changes via AI queries.
What are the benefits of using whois-mcp over traditional WHOIS tools?
It enables seamless AI integration, real-time queries, and removes manual lookup steps for faster domain insights.