MCP Server
The RobotDomainSearch MCP server gives AI agents the ability to search, check, and look up domain information through the Model Context Protocol — an open standard for connecting AI applications to external tools.
Installation
Install globally via npm:
npm install -g @robotdomainsearch/mcp
Or run directly with npx (no install required):
npx @robotdomainsearch/mcp
Client Setup
Claude Desktop
Add to your claude_desktop_config.json:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"robotdomainsearch": {
"command": "npx",
"args": ["-y", "@robotdomainsearch/mcp"]
}
}
}
Restart Claude Desktop after saving.
Claude Code
Run one command in your terminal:
claude mcp add robotdomainsearch -- npx -y @robotdomainsearch/mcp
Cursor
Add to your MCP settings in Cursor (Settings → MCP):
{
"robotdomainsearch": {
"command": "npx",
"args": ["-y", "@robotdomainsearch/mcp"]
}
}
Windsurf
Add to your Windsurf MCP configuration:
{
"mcpServers": {
"robotdomainsearch": {
"command": "npx",
"args": ["-y", "@robotdomainsearch/mcp"]
}
}
}
Generic MCP Client
Any MCP-compatible client can connect using:
- Command:
npx - Args:
["-y", "@robotdomainsearch/mcp"] - Transport: stdio
Available Tools
The MCP server exposes 8 tools:
check_domain— Check if a single domain is available for registrationwhois_lookup— Look up WHOIS/RDAP registration data for a domaindomain_intel— Get domain intelligence (parked detection, screenshots)list_tlds— Get all 511+ supported top-level domainsget_registration_link— Get registrar links to register available domainssearch_auctions— Browse live domain auctionsens_check— Check ENS (.eth) name availabilityens_metadata— Get ENS metadata (address, avatar, social links)
Example Prompts
Once configured, you can ask your AI assistant things like:
- “Check if mycoolstartup.com is available”
- “Find me an available .dev domain for ‘aitools’”
- “Check these domains: startup.io, startup.co, startup.dev”
- “What TLDs are available in the technology category?”
Troubleshooting
Server not connecting
- Make sure Node.js 18+ is installed:
node --version - Verify npx works:
npx @robotdomainsearch/mcp --help - Check your client’s MCP log for error messages
- Restart your AI client after configuration changes
Tools not appearing
- Confirm the server is listed in your client’s MCP settings
- Some clients require a restart to pick up new MCP servers
- Check that the JSON configuration is valid (no trailing commas)
Rate limiting
During beta, all requests are limited to 60/minute per IP.
Next Steps
- MCP Product Page — Overview and quick start
- CLI Documentation — Command-line tool for terminal usage
- API Reference — Full REST API documentation
- GitHub Repository — Source code and issues