Are you the author? Sign in to claim
A Model Context Protocol (MCP) server that checks domain name availability using WHOIS lookups and DNS resolution
A Model Context Protocol (MCP) server that checks domain name availability using WHOIS lookups and DNS resolution. Built with the modern FastMCP framework for easy setup and reliable domain availability checking.
Add the following configuration to your MCP-compatible application:
{
"mcpServers": {
"domain-checker-remote-mcp": {
"url": "https://domain-checker-remote-mcp-la5h5.ondigitalocean.app/mcp",
"description": "Check if a domain is available",
"command": ""
}
}
}
This remote MCP server is already deployed and ready to use!
# Make sure your virtual environment is activated
fastmcp dev local-domain-checker.py
This MCP server works with Claude Desktop, Cursor, Windsurf, and other MCP-compatible applications.
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json~/Library/Application Support/Cursor/cursor_desktop_config.json%APPDATA%\Cursor\cursor_desktop_config.json~/Library/Application Support/Windsurf/windsurf_desktop_config.json%APPDATA%\Windsurf\windsurf_desktop_config.jsonAdd the following configuration to the appropriate file, making sure to point to your virtual environment:
{
"mcpServers": {
"domain-checker": {
"command": "/path/to/your/venv/bin/python",
"args": ["/path/to/your/local-domain-checker.py"]
}
}
}
Important:
local-domain-checker.py for local development (it has simpler configuration without port/host settings)domain-checker.py is configured for remote deployment with additional parametersClone the repository
git clone https://github.com/ajot/domain-checker-mcp-server.git
cd domain-checker-mcp-server
Create and activate a virtual environment (recommended)
python -m venv venv
# On macOS/Linux
source venv/bin/activate
# On Windows
venv\Scripts\activate
Install dependencies
pip install -r requirements.txt
This MCP server can be deployed as a remote MCP server on DigitalOcean App Platform.
Push your code to a Git repository Make sure all your changes are committed and pushed to a GitHub, GitLab, or Bitbucket repository.
Create a new App on DigitalOcean App Platform
Configure the App
/python domain-checker.pyPORT=8080Deploy the App
Configure as Remote MCP Once deployed, you can use the app URL as a remote MCP server in your MCP-compatible applications:
{
"mcpServers": {
"domain-checker": {
"url": "https://your-app-name.ondigitalocean.app/mcp",
"description": "Check domain name availability"
}
}
}
To update your deployed app, simply push changes to your Git repository. DigitalOcean App Platform will automatically build and deploy the new version.
"Check if myawesome-startup.com is available"
"Check availability for these domains: mycompany.com, mycompany.net, mycompany.org"
Domain: example-startup.com
Status: ✅ LIKELY AVAILABLE
WHOIS Check: Available
DNS Resolution: Not resolving
Details:
{
"whois": {
"available": true,
"reason": "WHOIS parser error: No match for domain"
},
"dns": {
"resolvable": false,
"reason": "Domain does not resolve (NXDOMAIN)"
}
}
1. Import Errors
pip install -r requirements.txt2. Timeout Issues
3. DigitalOcean Deployment Issues
Disclaimer: This tool provides estimates of domain availability. Always verify availability through official domain registrars before making any purchase decisions.
Run Claude Code as an MCP server so any agent can delegate coding tasks to it
Browser automation using accessibility snapshots instead of screenshots
Google's universal MCP server supporting PostgreSQL, MySQL, MongoDB, Redis, and 10+ databases
Official GitHub integration for repos, issues, PRs, and CI/CD workflows