Skip to main content
Glama
appouse

@appouse/godaddy-dns-mcp

by appouse

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
GODADDY_API_KEYYesProduction API key from GoDaddy
GODADDY_API_SECRETYesMatching API secret

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
list_dns_recordsA

List DNS records for a domain. Optionally filter by record type, and by name as well (filtering by name requires a record type).

add_dns_recordA

Add a DNS record without overwriting existing records of the same type (PATCH). Use replace_dns_records instead when exactly one record should exist.

replace_dns_recordsA

Replace ALL DNS records of a given type+name (PUT) — this overwrites any existing records that match. Use it when exactly one record should exist and duplicates must be removed. Pass dry_run=true to preview the change.

delete_dns_recordA

Delete ALL DNS records of a given type and name for a domain. Pass dry_run=true to preview the deletion without applying it.

check_domain_availabilityA

Check whether a domain is available to register. Returns availability, price (in micro-units of the returned currency) and whether the answer is definitive.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.4/5.0

Scored across 5 tools

Disambiguation5/5

Each DNS tool targets a distinct operation: list, add, replace, delete, and domain availability. No two tools overlap in purpose; add vs. replace are clearly differentiated by overwrite semantics and dry-run options.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case: list_dns_records, add_dns_record, replace_dns_records, delete_dns_record, check_domain_availability. There is no mixing of styles or vague verbs.

Tool Count5/5

Five tools is well-scoped for a DNS management server. The count covers the essential record operations plus a useful domain availability check without unnecessary bloat.

Completeness5/5

The tool set provides full CRUD coverage for DNS records: list (read), add (create), replace (update/overwrite), and delete. The dry-run options and record-type filters round out the surface, and the availability check addresses a common adjacent need.

Maintenance

ActivitySlowing
ResponsivenessNo issues