1. Conduid
  2. AI
  3. Fastdomaincheck MCP Server
MCP server · AI

Fastdomaincheck MCP Server

A Model Context Protocol for checking domain name registration status in bulk.

Unclaimed MIT last commit 10 months ago browser
64Good

Scored 4 months ago · breakdown

About Fastdomaincheck MCP Server

Fastdomaincheck MCP Server is an MCP server published by bingal in the AI category: a Model Context Protocol for checking domain name registration status in bulk. It has been installed 0 times through Conduid.

The repository has 36 stars and 7 forks, with the last commit 10 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx fastdomaincheck-mcp-server

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Fastdomaincheck MCP Server

Powered by Claude · Grounded in docs

I know everything about Fastdomaincheck MCP Server. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v1.0.4v1.0.4 · 19 Mar 2025Changelog d6292f3c15f38fc4757e759d030400c4d4192fb4 更新 Dockerfile,注释掉 GOPROXY 环境变量,以避免在构建过程中使用该设置。 f3f2271cf9e8c6d6036abc25bf5a336e1efdf2e2 更新 main.go,修改健康检查服务器的启动逻辑,添加命令行参数以启用健康检查并指定端口。同时更新 smithery.yaml,调整启动命令以包含新的健康检查参数。
v1.0.3v1.0.3 · 18 Mar 2025Changelog aff26f6369f0a85b71e06a96b67c11da2db7c721 更新 Dockerfile 和 go.mod,升级 Go 版本至 1.22,优化 Docker 构建过程,添加 GOPROXY 环境变量以提高下载速度。同时在 main.go 中添加命令行参数以控制健康检查服务器的启动,默认情况下跳过健康检查。 c09d8d261a053378ad62e7e91d1b13b52af14a11 更新…
v1.0.1v1.0.1 · 17 Mar 2025Changelog 6564eefd8bf86aa91a2f5ee5435725fcc4c4ae80 add config

README

FastDomainCheck MCP Server

A Model Context Protocol implementation for checking domain name registration status in bulk.

Related Links

Introduction

FastDomainCheck MCP Server is a Model Context Protocol (MCP) server implementation that enables secure, two-way connections between AI tools (like Claude) and domain availability data. By following the open MCP standard, it ensures seamless compatibility with various AI-powered applications.

Features

  • Bulk domain registration status checking
  • Dual verification using WHOIS and DNS
  • Support for IDN (Internationalized Domain Names)
  • Concise output format
  • Built-in input validation and error handling

Tool Documentation

check_domains

Check registration status for multiple domain names.

Input Format

{
  "domains": ["example.com", "test.com"]
}

Parameters:

  • domains: Array of strings containing domain names to check
    • Maximum length of 255 characters per domain
    • Maximum 50 domains per request
    • No empty domain names allowed

Output Format

{
  "results": {
    "example.com": {
      "registered": true
    },
    "test.com": {
      "registered": false
    }
  }
}

Response Fields:

  • results: Object with domain names as keys and check results as values
    • registered: Boolean
      • true: Domain is registered
      • false: Domain is available

Error Handling

The tool will return an error in the following cases:

  1. Empty domains list
  2. More than 50 domains in request
  3. Empty domain name
  4. Domain name exceeding 255 characters
  5. Result serialization failure

Error Response Format:

{
  "error": "Error: domains list cannot be empty"
}

Usage Examples

Check multiple domains:

Request

{
  "domains": ["example.com", "test123456.com"]
}

Response

{
  "results": {
    "example.com": {
      "registered": true
    },
    "test123456.com": {
      "registered": false
    }
  }
}

Performance Considerations

  1. Domain checks are executed sequentially, taking approximately 0.3-1 second per domain
  2. Maximum 50 domains per request to prevent resource exhaustion
  3. WHOIS query timeout set to 10 seconds
  4. DNS query fallback when WHOIS query fails

Error Handling Strategy

  1. Input Validation: Comprehensive validation before processing
  2. Dual Verification: WHOIS primary, DNS fallback
  3. Timeout Management: Reasonable timeouts for all network operations
  4. Detailed Error Messages: Clear error descriptions for troubleshooting

Usage

Download Binary

Download the binary file from the release page. https://github.com/bingal/FastDomainCheck-MCP-Server/releases

For Mac/Linux

chmod +x FastDomainCheck-MCP-Server

MCP Server Settings

Configuring FastDomainCheck MCP in Claude Deskto

Modify your claude-desktop-config.json file as shown below

Mac/Linux

{
  "mcpServers": {
    "fastdomaincheck": {
      "command": "/path/to/FastDomainCheck-MCP-Server",
      "args": []
    }
  }
}

Windows

{
  "mcpServers": {
    "fastdomaincheck": {
      "command": "path/to/FastDomainCheck-MCP-Server.exe",
      "args": []
    }
  }
}

Python version

The Python version of this project is available at fastdomaincheck-mcp-server.

MCP Server Settings

{
  "mcpServers": {
    "fastdomaincheck": {
      "command": "uvx",
      "args": [
        "fastdomaincheck-mcp-server"
      ]
    }
  }
}

Development Guide

Requirements

  • Go 1.16 or higher
  • Network connectivity (for WHOIS and DNS queries)
  • Dependencies:
    • github.com/metoro-io/mcp-golang
    • Other project-specific dependencies

Build

# Linux
go build -o FastDomainCheck-MCP-Server

# Windows
go build -o FastDomainCheck-MCP-Server.exe

README mirrored from the source repository 4 months ago. The original is authoritative.

Questions

About Fastdomaincheck MCP Server

How do I install Fastdomaincheck MCP Server?

Run npx fastdomaincheck-mcp-server, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Fastdomaincheck MCP Server safe to use with an AI agent?

Its trust score is 64 out of 100 (good). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Fastdomaincheck MCP Server still maintained?

The last commit was 10 months ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.