Domain Checker
Check domain name availability using WHOIS lookups and DNS resolution.
Domain Checker Remote MCP Server
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.
Deploy this Remote MCP Server to DigitalOcean
Features
- ✅ Dual Verification: Uses both WHOIS and DNS resolution for accurate results
- 🚀 Async Operations: Non-blocking operations with proper timeout handling
- 📊 Batch Processing: Check multiple domains concurrently
- 🔍 Detailed Analysis: Provides comprehensive availability information
Using the Domain Checker
Option 1: Use the Remote MCP Server (Easiest)
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!
Option 2: With FastMCP Development Tools
# Make sure your virtual environment is activated
fastmcp dev local-domain-checker.py
Option 3: Configure Local MCP Server
This MCP server works with Claude Desktop, Cursor, Windsurf, and other MCP-compatible applications.
Configuration Locations
- Claude Desktop:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
- macOS:
- Cursor:
- macOS:
~/Library/Application Support/Cursor/cursor_desktop_config.json - Windows:
%APPDATA%\Cursor\cursor_desktop_config.json
- macOS:
- Windsurf:
- macOS:
~/Library/Application Support/Windsurf/windsurf_desktop_config.json - Windows:
%APPDATA%\Windsurf\windsurf_desktop_config.json
- macOS:
Add 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:
- Replace paths with the actual paths to your virtual environment and domain checker directory
- Use
local-domain-checker.pyfor local development (it has simpler configuration without port/host settings) domain-checker.pyis configured for remote deployment with additional parameters
Installation (For Local Use)
Prerequisites
- Python 3.8 or higher
- pip package manager
Setup
-
Clone 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
Deploy to DigitalOcean App Platform
This MCP server can be deployed as a remote MCP server on DigitalOcean App Platform.
Prerequisites
- A DigitalOcean account
- The doctl command-line tool (optional)
- Git repository with your code
Deployment Steps
-
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
- Go to the DigitalOcean App Platform dashboard
- Click "Create App" and select your Git repository
- Select the branch you want to deploy
- Choose "Python" as the environment
-
Configure the App
- Set the source directory to
/ - Set the run command to:
python domain-checker.py - Set the environment variable:
PORT=8080 - Set HTTP port to 8080
- Set the source directory to
-
Deploy the App
- Click "Deploy to Production"
- Wait for the build and deployment to complete
-
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" } } }
Updating Your Deployment
To update your deployed app, simply push changes to your Git repository. DigitalOcean App Platform will automatically build and deploy the new version.
Usage Examples
Check Single Domain
"Check if myawesome-startup.com is available"
Check Multiple Domains
"Check availability for these domains: mycompany.com, mycompany.net, mycompany.org"
Understanding Results
Availability Status
- ✅ LIKELY AVAILABLE: Domain appears to be unregistered and available
- ❌ NOT AVAILABLE: Domain is registered and not available
- ❓ UNCLEAR: Mixed signals - manual verification recommended
Sample Output
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)"
}
}
Troubleshooting
Common Issues
1. Import Errors
- Make sure your virtual environment is activated
- Verify all dependencies are installed:
pip install -r requirements.txt
2. Timeout Issues
- Some WHOIS servers have rate limits
- Network connectivity issues can cause timeouts
3. DigitalOcean Deployment Issues
- Check that the port is set to 8080 in both the code and the App Platform configuration
- Verify that all dependencies are in requirements.txt
- Check the deployment logs for any error messages
Disclaimer: This tool provides estimates of domain availability. Always verify availability through official domain registrars before making any purchase decisions.
Related Servers
Alpha Vantage MCP Server
sponsorAccess financial market data: realtime & historical stock, ETF, options, forex, crypto, commodities, fundamentals, technical indicators, & more
agentmem
Governed memory for coding agents with trust lifecycle, conflict detection, staleness tracking, and health scoring. SQLite + FTS5, zero infrastructure. Works with Claude Code, Cursor, Codex, Windsurf.
MCP SeriesGenerator
A .NET server for generating and validating vehicle serial numbers.
ACR — Agent Composition Records
Interaction profile registry for AI agents — log interactions, build a behavioral profile, query it through behavioral lenses. 21 tools, zero-config.
paytoll-mcp
Access 20+ DeFi, crypto, and AI endpoints through micro-payments. Get Aave rates, build DeFi transactions, fetch crypto prices, resolve ENS names, search Twitter, and query LLMs - all paid per-call with USDC on Base. No API keys needed, payment is the auth
SoftProbe MCP Server
An MCP server for managing API test data and resources.
Shadcn UI MCP Server
A powerful and flexible MCP server designed to enhance the development experience with Shadcn UI components, providing tools for component management, documentation, and installation.
Cursor Chat History MCP
Provides local access to Cursor chat history for AI analysis and insights, with no external services or API keys required.
Postman MCP Generator
A server providing JavaScript tools for making Postman API requests.
Futarchy MCP
A server for interacting with the Futarchy protocol on the Solana blockchain.
System Diagnostics
An MCP server for system diagnostics and monitoring on Ubuntu using common command-line tools.