Skip to main content
Glama
dnsmint

DNSMint MCP Server

Official
by dnsmint

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
DNSMINT_API_KEYYesRequired. API key with `hostnames:read` and `hostnames:write` scopes, ideally scoped to one domain.
DNSMINT_API_URLNoAPI base URL.https://dnsmint.com/api/v1
DNSMINT_ALLOW_RELEASENoSet to `true` to expose the `release_hostname` tool. Off by default.false

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_hostnamesA

Every hostname this key can see, with how many are active and the plan's cap. Check the cap before minting: a hostname is the unit the plan counts.

get_hostnameA

One hostname's status and certificate mode. Does not say where it points: DNS is the authoritative answer for that, so use diagnose_hostname or resolve the name.

mint_hostnameA

Register an address and get back a stable hostname that survives the address changing. This is the tool to use when a machine or agent needs a name.

The address class is fixed for the life of the name: mint with a public address and it stays public, mint with a private one and it stays private. Crossing later is refused, so pass the address the machine will actually serve on.

A hostname is one label above a domain. Names below a hostname are not hostnames and cannot be minted.

Newly minted names report status 'pending' and go 'live' within about a minute.

repoint_hostnameA

Point an existing hostname at a new address. This is what makes the name worth having: the machine moves, the name does not, and everything holding the URL keeps working.

Repointing within an address class is free, including between IPv4 and IPv6. Crossing between public and private is refused, because one name resolving public then private is how DNS rebinding works.

diagnose_hostnameA

Why a hostname is or is not working: what the nameservers answer, what public resolvers see, and whether a certificate has been issued. Use this before assuming something is broken; a name minted moments ago may simply not have propagated.

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 tool targets a distinct operation: listing, single-status lookup, minting, repointing, and diagnosis. get_hostname and diagnose_hostname are explicitly differentiated, with diagnose reserved for DNS/certificate troubleshooting.

Naming Consistency5/5

All five tools use a consistent verb_noun pattern with snake_case (list_hostnames, get_hostname, mint_hostname, repoint_hostname, diagnose_hostname). Pluralization of list_hostnames is natural and does not break the pattern.

Tool Count5/5

Five tools is well-scoped for a focused DNS hostname minting service. Each tool covers an essential operation without redundancy or bloat.

Completeness3/5

The set covers create (mint), read (list/get), update (repoint), and diagnosis, but has no delete, retire, or deprecate operation for hostnames. This is a notable lifecycle gap that prevents cleanup of unwanted names.

Maintenance

ActivityMaintained
ResponsivenessNo issues