Skip to main content
Glama

get_dnssec

Retrieve DNSSEC settings for a domain to verify and manage domain name system security extensions.

Instructions

Get DNSSEC (Domain Name System Security Extensions) settings for a domain.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
domainYesDomain name to query DNSSEC for

Implementation Reference

  • The MCP tool handler for get_dnssec, which calls the dynadot-client and returns the result as text.
    async ({ domain }) => {
      try {
        const result = await client.getDnssec(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 DNSSEC: ${msg}` },
          ],
          isError: true,
        };
  • The MCP tool registration for get_dnssec.
    server.tool(
      "get_dnssec",
      "Get DNSSEC (Domain Name System Security Extensions) settings for a domain.",
      {
        domain: z.string().describe("Domain name to query DNSSEC for"),
      },
  • The API client method that performs the actual network call to the Dynadot API.
    async getDnssec(domain: string): Promise<DynadotResponse> {
      return this.call("get_dnssec", { 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