whoisthere
Verified Safeby jaysongiroux
Overview
An MCP server enabling LLMs to check domain name availability and discover available Top-Level Domains (TLDs).
Installation
docker run -p 8080:8080 ghcr.io/jaysongiroux/whoisthere:latestEnvironment Variables
- HOST
Security Notes
The server primarily relies on external WHOIS services (likexian/whois) which inherently involve network requests. Input validation (`CleanAndValidateDomain`) is present before making WHOIS queries. The `http.ListenAndServe` call in `main.go` lacks explicit timeouts, which is flagged by `gosec` (G114) for potential resource exhaustion in production environments, though for an internal MCP server, this might be acceptable. No clear hardcoded secrets, 'eval' usage, or malicious patterns were identified.
Similar Servers
mcp-devtools
A high-performance MCP server providing a unified interface to essential developer tools, featuring OAuth 2.0/2.1 authorization and a multi-layered security framework.
mkp
MKP is a Model Context Protocol (MCP) server for Kubernetes, enabling LLM-powered applications to interact with Kubernetes clusters by providing tools for resource listing, getting, applying, deleting, and executing commands.
ocireg-mcp
An MCP server enabling LLM-powered applications to interact with OCI registries for querying image information, tags, manifests, and configurations.
go-mcp-server
Provides tea information as a Model Context Protocol (MCP) server for AI/LLM clients, primarily for learning and understanding the MCP specification.