check_processing
Monitor pending domain operations on your Dynadot account to track transfers, DNS updates, and other processing tasks.
Instructions
Check if there are any pending/processing operations on the account.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/account.ts:170-192 (handler)The implementation of the 'check_processing' tool, which wraps the client.isProcessing() call.
server.tool( "check_processing", "Check if there are any pending/processing operations on the account.", {}, async () => { try { const result = await client.isProcessing(); 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 check processing: ${msg}` }, ], isError: true, }; } } );