Connects Claude to the WhoisJSON API for domain intelligence lookups. You get four tools: whois_lookup pulls registration data like registrar info and nameservers, dns_lookup fetches all DNS records including A, MX, TXT, and DMARC, ssl_check validates certificates, and domain_availability tells you if a domain is up for grabs. Requires a WhoisJSON API key from their dashboard. Useful when you need to audit domain configurations, investigate ownership chains, or check SSL expiry dates without leaving your conversation. Runs via npx with stdio transport, so setup is just dropping your API key into Claude's config.
MCP (Model Context Protocol) server for the WhoisJSON API. Exposes WHOIS, DNS, SSL, and domain availability lookups as tools for AI assistants.
| Tool | Description |
|---|---|
whois_lookup | WHOIS registration data for a domain (registrar, dates, contacts, nameservers…) |
dns_lookup | All DNS records for a domain (A, AAAA, MX, NS, TXT, CNAME, SOA, CAA, DMARC…) |
ssl_check | SSL/TLS certificate details and validity for a domain |
domain_availability | Check if a domain is available for registration |
npm install -g @whoisjson/mcp-server
# or run directly with npx (no install needed):
npx @whoisjson/mcp-server
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or
%APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"whoisjson": {
"command": "npx",
"args": ["-y", "@whoisjson/mcp-server"],
"env": {
"WHOISJSON_API_KEY": "your_api_key_here"
}
}
}
}
Edit ~/.cursor/mcp.json:
{
"mcpServers": {
"whoisjson": {
"command": "npx",
"args": ["-y", "@whoisjson/mcp-server"],
"env": {
"WHOISJSON_API_KEY": "your_api_key_here"
}
}
}
}
Edit ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"whoisjson": {
"command": "npx",
"args": ["-y", "@whoisjson/mcp-server"],
"env": {
"WHOISJSON_API_KEY": "your_api_key_here"
}
}
}
}
cd mcp-server
npm install
npm run build
WHOISJSON_API_KEY=your_key npm start
npm run build
npm publish --access public
Full API documentation: whoisjson.com/documentation
WHOISJSON_API_KEY*secretYour WhoisJSON API key from whoisjson.com/dashboard