MCP Server for checking domain name availability using WHOIS and DNS.
Project description
FastDomainCheck MCP Server (Python)
This is a domain availability check server implemented using Python and the Model Context Protocol (MCP). It provides MCP Tools to check if single or multiple domain names are already registered.
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 valuesregistered: Booleantrue: Domain is registeredfalse: Domain is available
Error Handling
The tool will return an error in the following cases:
- Empty domains list
- More than 50 domains in request
- Empty domain name
- Domain name exceeding 255 characters
- 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
}
}
}
MCP Server Settings
Configuring FastDomainCheck MCP in Claude Deskto
Modify your claude-desktop-config.json file as shown below
{
"mcpServers": {
"fastdomaincheck": {
"command": "uvx",
"args": [
"-y",
"fastdomaincheck-mcp-server"
]
}
}
}
Go Version Reference
Contributing
Feel free to open issues or submit pull requests.
License
MIT License (You should add a LICENSE file, typically containing the MIT license text)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fastdomaincheck_mcp_server-0.1.1.tar.gz.
File metadata
- Download URL: fastdomaincheck_mcp_server-0.1.1.tar.gz
- Upload date:
- Size: 7.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c53dd5acc36af4925a96b1bc513d01c283c29522f63f457a43a5a2f758651d64
|
|
| MD5 |
3a693f352f89979a280d55f66a75d421
|
|
| BLAKE2b-256 |
9ab3523bf78f339b0487ab45bb46400975efff204fe138456a9c17b707bf0992
|
File details
Details for the file fastdomaincheck_mcp_server-0.1.1-py3-none-any.whl.
File metadata
- Download URL: fastdomaincheck_mcp_server-0.1.1-py3-none-any.whl
- Upload date:
- Size: 6.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
48191e7e2d9bcd5c0672800425022da877e9d623a8e7aa2f5dd5794911b17d3b
|
|
| MD5 |
96bea452befa75db0eb972a49ef613af
|
|
| BLAKE2b-256 |
08e9d5fd8147fbc3f9926217b7f0f1877fb98741dbb2940d117fccc407d8c001
|