FastDomainCheck MCP Server is a Model Context Protocol (MCP) implementation designed to check domain name registration status in bulk. It enables secure, two-way connections between AI tools (like Claude) and domain availability data, ensuring seamless compatibility with various AI-powered applications.
check_domains
Check the registration status for multiple domain names.
{
"domains": ["example.com", "test.com"]
}
domains
: Array of domain names (max 50 per request, max 255 characters per domain).{
"results": {
"example.com": {
"registered": true
},
"test.com": {
"registered": false
}
}
}
results
: Object with domain names as keys and check results as values.registered
: Boolean indicating domain availability.Returns an error for:
1. Empty domains list.
2. More than 50 domains in a 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"
}
Request:
{
"domains": ["example.com", "test123456.com"]
}
Response:
{
"results": {
"example.com": {
"registered": true
},
"test123456.com": {
"registered": false
}
}
}
Download the binary from the release page.
chmod +x FastDomainCheck-MCP-Server
Modify your claude-desktop-config.json
file:
Mac/Linux:
{
"mcpServers": {
"fastdomaincheck": {
"command": "/path/to/FastDomainCheck-MCP-Server",
"args": []
}
}
}
Windows:
{
"mcpServers": {
"fastdomaincheck": {
"command": "path/to/FastDomainCheck-MCP-Server.exe",
"args": []
}
}
}
github.com/metoro-io/mcp-golang
Linux:
go build -o FastDomainCheck-MCP-Server
Windows:
go build -o FastDomainCheck-MCP-Server.exe
FastDomainCheck MCP Server is a Model Context Protocol for checking domain name registration status in bulk. Visit fastdomaincheck.com for more details.