godaddy-mcp

Harshalkatakiya/godaddy-mcp

3.2

If you are the rightful owner of godaddy-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

The GoDaddy MCP Server is a TypeScript-based server that interfaces with GoDaddy's Domain Availability API, enabling AI agents to check domain availability through MCP tools.

GoDaddy MCP Server

godaddy-mcp is a Model Context Protocol (MCP) server implemented in TypeScript. It interfaces with GoDaddy's Domain Availability API, allowing AI agents and applications to check the availability of single or multiple domain names through standardized tools.


Table of Contents


Overview

This project utilizes the @modelcontextprotocol/sdk to create an MCP-compliant server. MCP is an open standard that enables seamless integration between AI models and external tools or data sources.(1)

By exposing GoDaddy's domain availability checks as MCP tools, this server allows AI agents to programmatically verify domain availability.


Features

  • Check the availability of a single or multiple domains at once.
  • Supports both FAST and FULL check types.
  • Optionally include domains available for transfer.
  • Implements MCP tools for integration with AI agents.

Environment Variables

Add below environment variables to your mcpserver's configuration:

  • GODADDY_API_BASE_URL: Base URL for GoDaddy's API. https://api.ote-godaddy.com or https://api.godaddy.com.
  • GODADDY_API_KEY: Your GoDaddy API key.
  • GODADDY_API_SECRET: Your GoDaddy API secret.

MCP Configuration

To integrate this server with an MCP client, include the following configuration in your MCP JSON:

{
  "mcpServers": {
    "godaddy": {
      "command": "npx",
      "args": ["-y", "godaddy-mcp"],
      "env": {
        "GODADDY_API_BASE_URL": "<godaddy-api-base-url>",
        "GODADDY_API_KEY": "<godaddy-api-key>",
        "GODADDY_API_SECRET": "<godaddy-api-secret>"
      }
    }
  }
}

License

This project is licensed under the .


Author

Harshal Katakiya