{
"mcpServers": {
"whoisfreaks-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server for Whoisfreaks.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 6 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Whoisfreaks Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that exposes the full WhoisFreaks API suite as AI-callable tools. Works with Claude Desktop, Cursor, Windsurf, VS Code, Continue, Zed, and any other MCP-compatible AI client.
Two ways to run it — pick what fits your setup:
| | Method | Requires | Best for | |--|--------|----------|----------| | ⭐ Recommended | Docker (pre-built image) | Docker only | Everyone — no Java or Maven needed | | | Build from source | Java 17 + Maven | Contributors / custom builds |
Once running, connect it to any MCP client via stdio (local) or HTTP/SSE on port 3100 (remote VM).
| Tool | Description |
|------|-------------|
| liveWhoisLookup | Real-time WHOIS data for any domain — registrar, registrant, dates, nameservers |
| whoisHistory | Complete ownership history timeline for a domain |
| reverseWhoisLookup | Find all domains registered by an email address, keyword, owner name, or company |
| Tool | Description |
|------|-------------|
| ipWhoisLookup | WHOIS registration data for any IPv4 or IPv6 address |
| asnWhoisLookup | WHOIS data for an Autonomous System Number (e.g. AS15169) |
| Tool | Description |
|------|-------------|
| dnsLookup | Live DNS records — A, AAAA, MX, NS, CNAME, SOA, TXT, SPF, or all |
| dnsHistory | Historical DNS records with full change timeline |
| reverseDnsLookup | Find all domains pointing to a given IP or nameserver |
| Tool | Description |
|------|-------------|
| ipGeolocation | Country, city, region, ISP, and coordinates for any IP address |
| ipSecurity | VPN, proxy, Tor exit node, bot, and threat intelligence for any IP |
| Tool | Description |
|------|-------------|
| domainAvailability | Check if a domain is available to register, with optional suggestions |
| subdomainLookup | Enumerate all known subdomains for a domain, with status and date filters |
| domainDiscovery | Find domains by keyword, including typosquatting and similar variants |
| Tool | Description |
|------|-------------|
| sslLookup | SSL/TLS certificate details — issuer, expiry, SANs, chain, and raw output |
No Java or Maven required. Pull the pre-built image directly from Docker Hub and run.
Get your free API key first: whoisfreaks.com/signup
docker run (simplest)docker run -d \
--name whoisfreaks-mcp \
--restart unless-stopped \
-p 3100:3100 \
-e WHOISFREAKS_API_KEY=your-api-key-here \
whoisfreaks/mcp-server:latest
The MCP gateway is now live at http://localhost:3100/sse.
Create a docker-compose.yml:
services:
whoisfreaks-mcp:
image: whoisfreaks/mcp-server:latest
container_name: whoisfreaks-mcp
restart: unless-stopped
ports:
- "3100:3100"
environment:
WHOISFREAKS_API_KEY: your-api-key-here
Start it:
docker compose up -d
Or use a .env file instead of hardcoding the key (recommended):
# Create .env file (never commit this to git)
echo "WHOISFREAKS_API_KEY=your-api-key-here" >
... [View full README on GitHub](https://github.com/WhoisFreaks/whoisfreaks-mcp-server#readme)