Domain Availability Checker
БесплатноНе проверенChecks domain availability for registration using RDAP APIs, supporting .com and .net TLDs.
Описание
Checks domain availability for registration using RDAP APIs, supporting .com and .net TLDs.
README
An MCP (Model Context Protocol) server that checks domain availability for registration using RDAP APIs.
Supported TLDs
Currently supported:
.com- via Verisign RDAP API.net- via Verisign RDAP API
The architecture is extensible - see Adding a New TLD below.
Installation
Usage with Claude Desktop
Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"domain-checker": {
"command": "npx",
"args": ["-y", "github:gotchykid/domain-availability-checker-mcp"]
}
}
}
From Source
# Clone the repository
git clone https://github.com/gotchykid/domain-availability-checker-mcp.git
cd domain-availability-checker-mcp
# Install dependencies
npm install
# Build
npm run build
Then add to Claude Desktop config:
{
"mcpServers": {
"domain-checker": {
"command": "node",
"args": ["/path/to/domain-availability-checker-mcp/build/index.js"]
}
}
}
Tools
check_domain
Check if a domain is available for registration.
Parameters:
domain(string): Domain name to check (e.g., "example.com" or "example.net")
Returns:
- Domain availability status
- If registered: registrar, creation date, expiration date, nameservers, and status
Development
# Watch mode for development
npm run watch
# Test with MCP Inspector
npm run inspector
Adding a New TLD
To add support for a new TLD (e.g., .org):
- Create a new file
src/checkers/org.ts - Implement the
DomainCheckerinterface - Export the checker as
default
Example:
import { DomainChecker, DomainCheckResult } from "../types.js";
import {
RdapResponse,
parseRdapResponse,
createAvailableResult,
} from "./rdap-utils.js";
const RDAP_BASE_URL = "https://rdap.publicinterestregistry.org/rdap/domain/";
const TLD = "org";
const orgChecker: DomainChecker = {
tld: TLD,
async check(domain: string): Promise<DomainCheckResult> {
const normalizedDomain =
domain.toLowerCase().replace(/\.org$/, "") + ".org";
try {
const response = await fetch(`${RDAP_BASE_URL}${normalizedDomain}`);
if (response.status === 404) {
return createAvailableResult(normalizedDomain, TLD);
}
if (!response.ok) {
throw new Error(`RDAP request failed with status ${response.status}`);
}
const data: RdapResponse = await response.json();
return parseRdapResponse(data, normalizedDomain, TLD);
} catch (error) {
if (error instanceof Error && error.message.includes("404")) {
return createAvailableResult(normalizedDomain, TLD);
}
throw error;
}
},
};
export default orgChecker;
The registry auto-discovers checker files on startup - no other changes needed.
License
MIT
Установить Domain Availability Checker в Claude Desktop, Claude Code, Cursor
unyly install domain-availability-checker-mcpСтавит в Claude Desktop, Claude Code, Cursor и VS Code — сам разбирается с npx, uvx и сборкой из исходников.
Впервые? Поставь CLI: curl -fsSL https://unyly.org/install | sh
Или настроить вручную
Выполни в терминале:
claude mcp add domain-availability-checker-mcp -- npx -y github:gotchykid/domain-availability-checker-mcpFAQ
Domain Availability Checker MCP бесплатный?
Да, Domain Availability Checker MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Domain Availability Checker?
Нет, Domain Availability Checker работает без API-ключей и переменных окружения.
Domain Availability Checker — hosted или self-hosted?
Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.
Как установить Domain Availability Checker в Claude Desktop, Claude Code или Cursor?
Открой Domain Availability Checker на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
GitHub
PRs, issues, code search, CI status
автор: GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
автор: mcpdotdirectCompare Domain Availability Checker with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории development
