FastDomainCheck MCP Server
A Model Context Protocol for checking domain name registration status in bulk.
Overview
FastDomainCheck-MCP-Server is a Model Context Protocol (MCP) implementation designed for checking the registration status of domain names in bulk.
To use the FastDomainCheck-MCP-Server, download the binary from the release page, configure it in your application, and send requests to check multiple domain names.
- Bulk domain registration status checking - Dual verification using WHOIS and DNS - Support for Internationalized Domain Names (IDN) - Concise output format - Built-in input validation and error handling
- Checking the availability of multiple domain names for registration.
- Verifying domain registration status for web development projects.
- Assisting businesses in domain portfolio management.
Tools
check_domains
Check if multiple domain names are registered. Input: A list of domain names to check (e.g. ["example.com", "test.com"]) Output: JSON object containing registration status of each domain: { "results": { "example.com": { "registered": true }, "test.com": { "registered": false } } }
Check if multiple domain names are registered. Input: A list of domain names to check (e.g. ["example.com", "test.com"]) Output: JSON object containing registration status of each domain: { "results": { "example.com": { "registered": true }, "test.com": { "registered": false } } }
Add to your AI client
Use these steps to connect FastDomainCheck MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"fastdomaincheck-mcp-server-bingal": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fastdomaincheck-mcp-server-bingal"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"fastdomaincheck-mcp-server-bingal": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fastdomaincheck-mcp-server-bingal"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"fastdomaincheck-mcp-server-bingal": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fastdomaincheck-mcp-server-bingal"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"fastdomaincheck-mcp-server-bingal": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fastdomaincheck-mcp-server-bingal"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"fastdomaincheck-mcp-server-bingal": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fastdomaincheck-mcp-server-bingal"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"fastdomaincheck-mcp-server-bingal": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fastdomaincheck-mcp-server-bingal"
]
}
}
}FAQ
How many domains can I check at once?
You can check up to 50 domains per request.
What happens if I exceed the domain limit?
The server will return an error indicating that the maximum limit has been exceeded.
Is there a timeout for domain checks?
Yes, the WHOIS query timeout is set to 10 seconds, with DNS query fallback if necessary.