OrgSuite GoDaddy MCP
Provides tools for managing GoDaddy domains and DNS records, including listing domains, retrieving domain details, upserting DNS records, setting auto-renew, and planning Microsoft 365 or SSL DNS configurations.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@OrgSuite GoDaddy MCPPlan the Microsoft 365 DNS records for my domain."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
OrgSuite GoDaddy Managed Control Plane (MCP) Service
This service acts as a private, authenticated Managed Control Plane (MCP) for managing GoDaddy domains and DNS records through the OrgSuite ecosystem. It provides a set of RPC-style endpoints for programmatic interaction with GoDaddy's API, leveraging either a Personal Access Token (PAT) or an SSO Key for authentication.
Key Features:
Authenticated Access: Unlike public MCPs, this service requires an
ORGSUITE_MCP_TOKENfor POST requests, ensuring only authorized OrgSuite components can interact with it.GoDaddy API Integration: Wraps core GoDaddy domain and DNS management functionalities.
Domain Allowlist: Restricts operations to a predefined set of domains for enhanced security and control.
Dry-Run Capabilities: Many actions (e.g.,
upsert_dns,set_auto_renew) support a dry-run mode to preview changes without applying them.Planning Tools: Includes specific planning tools for common configurations like Microsoft 365 DNS and SSL DNS.
Authentication
This service authenticates with the GoDaddy API using the following environment variables, in order of preference:
GODADDY_PAT(Personal Access Token): Preferred method for Bearer token authentication.GODADDY_KEYandGODADDY_SECRET(SSO Key): Fallback for Basic authentication.
For accessing this MCP service itself, a Bearer token matching the ORGSUITE_MCP_TOKEN environment variable must be provided in the Authorization header for all POST requests.
Related MCP server: porkbun-mcp
Endpoints
/api/mcp(POST): JSON-RPC endpoint for executing GoDaddy actions. RequiresAuthorization: Bearer <ORGSUITE_MCP_TOKEN>./api/mcp(GET): Returns a list of available JSON-RPC methods/tools./api/godaddy/health(GET): A simple status endpoint to check the health and connectivity of the GoDaddy integration.
Available Tools (via JSON-RPC POST to /api/mcp)
health(): Returns the health status of the GoDaddy integration.list_domains(): Lists all domains associated with the GoDaddy account.get_domain(domain): Retrieves details for a specific domain.get_dns(domain): Retrieves DNS records for a specific domain.set_auto_renew(domain, autoRenew, apply=false): Sets the auto-renew status for a domain. Supports dry-run.upsert_dns(domain, records, apply=false): Creates or updates DNS records for a domain. Supports dry-run.plan_microsoft_365_dns(domain): Returns a dry-run plan for configuring Microsoft 365 DNS records.plan_ssl_dns(domain): Returns a dry-run plan for configuring SSL-related DNS records.
Usage Example (Conceptual)
// JSON-RPC POST request to /api/mcp
{
"jsonrpc": "2.0",
"id": 1,
"method": "get_domain",
"params": ["example.com"]
}Note: Ensure all necessary environment variables (GODADDY_PAT or GODADDY_KEY/GODADDY_SECRET, ORGSUITE_MCP_TOKEN, GODADDY_ALLOWED_DOMAINS) are configured for the service to function correctly.
This server cannot be deployed
Maintenance
Related MCP Connectors
MCP server for DNSimple — domains, DNS zone records, availability, pricing and contacts.
Normalized JSON for any domain across 1,200+ TLDs, reading WHOIS where no RDAP server exists.
Scan, fix, verify and monitor DNS: SPF, DMARC, DKIM, propagation, health, expiry. Validated fixes.
Provides capabilities that let LLM agents perform a range of infrastructure management tasks.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to manage Gandi domains and LiveDNS records directly via the Gandi API v5. It supports comprehensive domain management operations and full CRUD functionality for various DNS record types.3MIT
- AlicenseAqualityCmaintenanceMCP server for the Porkbun DNS API. Manage DNS records, domains, DNSSEC, SSL certificates, and more.2523MIT
- AlicenseDqualityDmaintenanceMCP server for Porkbun domains and DNS, enabling read-only and mutating operations with safety features like dry-run and write mode toggle.4065 npm3MIT
- AlicenseAqualityCmaintenanceMCP server for managing GoDaddy DNS records. Enables listing, adding, replacing, and deleting DNS records, and checking domain availability via natural language.511 npmMIT