Skip to main content
Glama

get_transfer_status

Check the current status of a domain transfer to monitor progress and confirm completion.

Instructions

Check the current status of a domain transfer.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
domainYesDomain name to check transfer status for

Implementation Reference

  • Tool registration and handler for get_transfer_status in the MCP server.
    server.tool(
      "get_transfer_status",
      "Check the current status of a domain transfer.",
      {
        domain: z.string().describe("Domain name to check transfer status for"),
      },
      async ({ domain }) => {
        try {
          const result = await client.getTransferStatus(domain);
          return {
            content: [
              { type: "text" as const, text: JSON.stringify(result, null, 2) },
            ],
          };
        } catch (error) {
          const msg = error instanceof Error ? error.message : String(error);
          return {
            content: [
              { type: "text" as const, text: `Failed to get transfer status: ${msg}` },
            ],
            isError: true,
          };
        }
      }
    );
  • Service method that performs the actual API call to get the transfer status.
    async getTransferStatus(domain: string): Promise<DynadotResponse> {
      return this.call("get_transfer_status", { domain });
    }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/mikusnuz/dynadot-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server