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
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | Domain name to check transfer status for |
Implementation Reference
- src/tools/transfer.ts:88-112 (handler)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 }); }