Domain Availability Checker MCP

Domain Availability Checker MCP

Domain Availability Checker MCP

Category
访问服务器

README

MCP Domain Availability Checker

smithery badge

<table style="border-collapse: collapse; width: 100%; table-layout: fixed;"> <tr> <td style="width: 40%; padding: 15px; vertical-align: middle; border: none;">A Model Context Protocol (MCP) integration that provides Claude Desktop with domain availability checking across popular TLDs.</td> <td style="width: 60%; padding: 0; vertical-align: middle; border: none; min-width: 300px; text-align: center;"><a href="https://glama.ai/mcp/servers/@imprvhub/mcp-domain-availability"> <img style="max-width: 100%; height: auto; min-width: 300px;" src="https://glama.ai/mcp/servers/@imprvhub/mcp-domain-availability/badge" alt="Domain Availability MCP server" /> </a></td> </tr> </table>

Features

  • Domain Availability Checking

    • Check availability across 50+ popular TLD extensions
    • Support for popular (.com, .io, .ai), country (.us, .uk, .de), and new TLDs (.app, .dev, .tech)
    • Dual verification using DNS and WHOIS for accuracy
    • Smart TLD suggestions organized by popularity
  • Search Capabilities

    • Check specific domains with exact TLD matching
    • Bulk checking across supported extensions for a given name
    • Parallel processing for faster domain queries
    • Organized results by TLD categories
  • MCP Integration

    • Easy setup with uvx package management
    • Seamless integration with Claude Desktop
    • Real-time availability status updates
    • Performance metrics and timing information
  • AI Assistant Features

    • Natural language domain queries through Claude
    • Automated domain suggestion workflows
    • Smart recommendations based on availability

Demo

<p> <a href="https://www.youtube.com/watch?v=pJjrkEihlWE"> <img src="assets/preview.png" width="600" alt="Domain Availability MCP server demo" /> </a> </p>

<details> <summary>Timestamps:</summary> Click on any timestamp to jump to that section of the video

00:00 - Checking google.com availability
Testing a well-known premium domain to demonstrate the domain checking functionality and alternative TLD suggestions.

00:20 - Testing myawesomesite.com
Verifying availability for a custom domain name and exploring alternative extension options.

00:40 - Verifying techstartup2026.io
Exploring tech startup domain options and checking availability across multiple TLD extensions.

01:00 - Analyzing aitools domain
Checking competitive AI industry domains and analyzing market availability for startup naming. </details>

Requirements

  • Python 3.10 or higher
  • Claude Desktop
  • uv package manager

Dependencies Installation

Install uv package manager using one of these methods:

Official installer (recommended):

curl -LsSf https://astral.sh/uv/install.sh | sh

Homebrew (macOS/Linux):

brew install uv

Install Homebrew (if needed):

  • Visit https://brew.sh for installation instructions on all operating systems
  • Or run: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

The MCP server automatically manages Python dependencies through uvx.

Installation

Zero-Clone Installation (Recommended)

The MCP Domain Availability Checker supports direct installation without cloning repositories, using uvx for package management.

Configuration

The Claude Desktop configuration file is located at:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json

Edit this file to add the Domain Availability MCP configuration:

{
  "mcpServers": {
    "mcp-domain-availability": {
      "command": "uvx",
      "args": [
        "--python=3.10",
        "--from",
        "git+https://github.com/imprvhub/mcp-domain-availability",
        "mcp-domain-availability"
      ]
    }
  }
}

If you already have other MCPs configured, simply add the "mcp-domain-availability" section inside the "mcpServers" object:

{
  "mcpServers": {
    "otherMcp": {
      "command": "...",
      "args": ["..."]
    },
    "mcp-domain-availability": {
      "command": "uvx",
      "args": [
        "--python=3.10",
        "--from",
        "git+https://github.com/imprvhub/mcp-domain-availability",
        "mcp-domain-availability"
      ]
    }
  }
}

Installing via Smithery

To install mcp-domain-availability for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @imprvhub/mcp-domain-availability --client claude

Manual Installation

For development or local testing:

  1. Clone the repository:
git clone https://github.com/imprvhub/mcp-domain-availability
cd mcp-domain-availability
  1. Install dependencies:
uv sync
  1. Run locally:
uv run src/mcp_domain_availability/main.py

How It Works

The MCP Domain Availability Checker uses multiple verification methods to determine domain availability:

  1. DNS Resolution: Checks if the domain resolves to an IP address
  2. WHOIS Lookup: Queries WHOIS databases for registration information
  3. Socket Connection: Falls back to socket-based checking when other methods aren't available

The tool combines results from these methods to provide accurate availability status, with parallel processing for checking multiple domains simultaneously.

Available Tools

Domain Checking

Tool Name Description Usage
check_domain Check domain availability with --domain flag mysite.com --domain or mysite --domain

Supported TLD Categories

Popular TLDs (12)

com, net, org, io, ai, app, dev, co, xyz, me, info, biz

Country TLDs (35)

us, uk, ca, au, de, fr, it, es, nl, jp, kr, cn, in, br, mx, ar, cl, co, pe, ru, pl, cz, ch, at, se, no, dk, fi, be, pt, gr, tr, za, eg, ma, ng, ke

New TLDs

tech, online, site, website, store, shop, cloud, digital, blog, news & more.

Example Usage

Here are examples of how to use the MCP Domain Availability Checker with Claude:

Single Domain Check

Check if mysite.com is available using --domain

Domain Name Research

Check availability for "startup" across all TLDs using --domain

Specific Domain Verification

Is awesome.io available? Use --domain to check

Output Format

The tool provides comprehensive results including:

  • Requested Domain: Status of the exact domain queried (if specific TLD provided)
  • Available Domains: List of available domains sorted alphabetically
  • Unavailable Domains: List of registered domains
  • Summary Statistics: Breakdown by TLD categories (Popular, Country, New TLDs)
  • Performance Metrics: Check duration for each domain

Troubleshooting

"Server disconnected" error

If you see connection errors in Claude Desktop:

  1. Verify uvx installation:

    • Run uvx --version to ensure uvx is properly installed
    • Reinstall uv if necessary: curl -LsSf https://astral.sh/uv/install.sh | sh
  2. Check Python version:

    • Ensure Python 3.10+ is available: python3 --version

DNS resolution issues

If domain checks are failing:

  1. Network connectivity:

    • Verify internet connection is stable
    • Check if DNS servers are accessible
  2. Rate limiting:

    • Large bulk checks may hit rate limits from DNS/WHOIS services
    • The tool uses a semaphore to limit concurrent requests to 20

Configuration issues

If the MCP server isn't starting:

  1. Verify configuration syntax:

    • Ensure JSON syntax is valid in claude_desktop_config.json
    • Check that all brackets and quotes are properly matched
  2. Restart Claude Desktop:

    • Close and restart Claude Desktop after configuration changes

Development

Project Structure

  • main.py: Main entry point with MCP server and domain checking logic
  • Domain checking functions with DNS, WHOIS, and socket fallback methods
  • TLD management with categorized lists
  • Async processing for parallel domain checks

Building

uv build

Testing

uv run pytest

Local Development

uv run main.py

Security Considerations

The MCP Domain Availability Checker makes external network requests to DNS servers and WHOIS services. Users should be aware that:

  • Domain queries may be logged by DNS providers
  • WHOIS queries are typically logged and may be rate-limited
  • No personal information is transmitted beyond the domain names being checked
  • All queries are read-only and do not modify any external systems

Contributing

Contributions are welcome! Areas for improvement include:

  • Adding support for additional TLD categories
  • Implementing caching mechanisms for faster repeated queries
  • Enhancing WHOIS parsing for more detailed domain information
  • Improving error handling and retry mechanisms

License

This project is licensed under the Mozilla Public License 2.0 - see the LICENSE file for details.

Related Links

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选