GoDaddy MCP Server
Official GoDaddy MCP server for searching domain ideas and checking domain availability with live pricing from AI assistants.
The GoDaddy Domains MCP Server is an official, provider-hosted integration that lets AI assistants search for domain names and check availability in real time without leaving the chat. It is built on the Model Context Protocol standard and was launched in early 2026, making GoDaddy the first domain registrar available through Claude's MCP directory.
The server exposes two read-only tools: domains_check_availability (single or bulk lookups against GoDaddy's exact-search and bulk availability APIs) and domains_suggest (keyword and business-idea brainstorming powered by GoDaddy's domain suggestion API, with LLM preprocessing that fans out descriptive prompts into parallel suggestion queries). Responses include both Markdown text for general clients and structured JSON plus widget metadata that renders interactive domain cards in widget-capable clients like ChatGPT.
The server is hosted by GoDaddy at https://api.godaddy.com/v1/domains/mcp over streamable HTTP. No API key is required for end users since the integration only exposes public domain data, with distributed quota tracking handling rate limiting. Purchases and account-level domain management still happen on godaddy.com.
Tools
| Tool | Description |
|---|---|
domains_check_availability |
Checks availability and pricing for one or more specific domain names. Routes single domains to the exact-search API and multiple comma-separated domains to the bulk availability API. Returns availability status, pricing, and registration links. |
domains_suggest |
Suggests available domain names based on keywords or a business description. Longer descriptive queries are preprocessed by an LLM that expands intent into multiple search angles, which are dispatched in parallel to GoDaddy's suggestion API and returned as a deduplicated list. |
Claude Desktop (one-click)
- Open Claude Desktop, then go to Settings → Connectors.
- Search the MCP directory for "GoDaddy".
- Click Connect to enable the integration.
- Start asking domain questions in chat.
Manual configuration
For clients that accept a custom MCP config, point the client at GoDaddy's hosted endpoint. No API key is needed.
{
"mcpServers": {
"godaddy": {
"url": "https://api.godaddy.com/v1/domains/mcp",
"transport": "streamable-http"
}
}
}
Notes
- Transport: streamable HTTP (the server also supports SSE for streaming clients and STDIO for local development).
- Authentication: none. The server only exposes public domain data and uses distributed quota tracking for rate limiting.
- CORS is enabled for
claude.aiandcursor.sh. - Interactive domain card widgets currently render in ChatGPT; Claude and Cursor receive a Markdown response.
- Brainstorm available domain names for a new product or company directly inside a chat with an AI assistant.
- Bulk-check a shortlist of candidate domains in one call to compare availability and pricing.
- Validate that a name suggested elsewhere in a conversation (e.g., a product naming session) is actually registerable.
- Generate themed domain ideas from a natural-language description like "eco-friendly pet supplies brand" and surface registration links.
- Compare TLD options (.com, .io, .ai, etc.) for the same root term before committing to a purchase on godaddy.com.
- "Is greentech.io available, and what does it cost?"
- "Check availability for acme.com, acme.io, acme.ai, and tryacme.com."
- "Suggest 10 available domain names for an AI-powered meal-planning app."
- "I'm launching a boutique coffee subscription called Brewline. Find me available .com and .co domains."
- "Find short, brandable domains related to 'fintech for freelancers' and include pricing."
- Official, provider-hosted server maintained by GoDaddy, with no API key or account setup required.
- Backed by GoDaddy's production domain APIs that handle millions of availability checks daily, including live pricing.
- Supports both single and bulk availability lookups plus LLM-assisted suggestion expansion for descriptive queries.
- Listed in Claude's MCP directory as a one-click connector.
- Read-only: cannot register, transfer, or manage domains, or modify DNS settings. Purchases still happen on godaddy.com.
- No access to authenticated, account-specific data such as a user's existing GoDaddy domain portfolio.
- Subject to shared rate-limit quotas since there is no per-user API key, which can throttle heavy automated use.
- Namecheap's domain APIs (no official MCP server at time of writing, community implementations only).
- Cloudflare Registrar via the Cloudflare MCP server, for users who already manage domains on Cloudflare.
- Community GoDaddy MCP servers on GitHub (e.g., Harshalkatakiya/godaddy-mcp) that wrap the authenticated GoDaddy API for account-level domain management.