Skip to main content
Glama

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
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • 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,
          };
        }
      }
    );

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