New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

dnsmint-mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dnsmint-mcp-server

MCP server for DNSMint: let an agent mint and manage its own hostnames.

latest
Source
npmnpm
Version
0.1.2
Version published
Maintainers
1
Created
Source

DNSMint MCP server

Most people want the hosted endpoint instead: https://dnsmint.com/mcp.

It needs nothing installed. In Claude or ChatGPT, add the URL as a connector and sign in. In Claude Code, Cursor or VS Code, point them at the URL with an API key. On a server with no browser, use the device flow. The recipe for each is on dnsmint.com/integrations.

This package is the same tools over stdio, for the case where you want the server running as a local subprocess rather than talking to ours.

Lets an agent mint and manage its own hostnames on DNSMint, through the Model Context Protocol.

Every other DNSMint integration assumes a human wrote the config first. This one does not: an agent that has just been given a machine can ask for a name for it, mid-task.

Which one to use

Hosted dnsmint.com/mcpThis package
InstallnothingNode, and an entry in a config file
Claude / ChatGPT connectorsyes, via OAuthno — they cannot spawn a subprocess
Headless serveryes, via the device flowyes
CredentialAPI key, or an OAuth grant you can revoke from the dashboardAPI key in the client's environment
Tool updatesreach you immediatelywhen you upgrade the package

The hosted endpoint is the one that gets improvements first. Use this if you specifically want a local process — an air-gapped setup pointed at a private deployment, or a client that only speaks stdio.

Configure

{
  "mcpServers": {
    "dnsmint": {
      "command": "npx",
      "args": ["-y", "dnsmint-mcp-server"],
      "env": {
        "DNSMINT_API_KEY": "dnsm_..."
      }
    }
  }
}

The key needs hostnames:read and hostnames:write. Scope it to one domain and the agent reaches nothing else on the account, which is the point of scoping.

Variable
DNSMINT_API_KEYRequired.
DNSMINT_ALLOW_RELEASEtrue to expose release_hostname. Off by default.
DNSMINT_API_URLAPI base URL. Defaults to https://dnsmint.com/api/v1.

Tools

Tool
list_hostnamesEvery name the key can see, plus how many are active against the plan's cap.
get_hostnameOne name's status and certificate mode.
mint_hostnameRegister an address, get a stable name back.
repoint_hostnameThe machine moved; the name does not.
diagnose_hostnameWhy a name is or is not working.
release_hostnameOnly when DNSMINT_ALLOW_RELEASE=true. See below.

The hosted endpoint carries the same six, and decides which to offer from what the credential was granted rather than from an environment variable.

Releasing is off by default, on purpose

A released hostname is tombstoned and never issued again, to anyone, including you. There is no undo.

That is a bad thing to leave within reach of a model deciding to tidy up, so release_hostname is not registered unless you set DNSMINT_ALLOW_RELEASE=true. When it is, the tool takes a confirm argument that must equal the hostname exactly, checked against the id before anything happens — so a name cannot be released by guessing an id or half-remembering a name.

If the goal is to stop serving, repoint the name or stop the machine. Releasing is for names that are genuinely finished with.

What the tool descriptions carry

The descriptions are the interface a model actually reads, so they state the rules the API enforces rather than leaving a model to discover them by being refused:

  • A hostname is one label above a domain. Names below a hostname are not hostnames.
  • The address class is fixed for life. Public stays public, private stays private; crossing is refused, because one name resolving public then private is how DNS rebinding works.
  • A newly minted name is pending and goes live within about a minute.
  • The API does not say where a name points. DNS is the authoritative answer, which is what diagnose_hostname reports.

Development

npm install
npm run build

Support

Something not working, or a case this does not cover? Open an issue here, or write to hello@dnsmint.com. This server is maintained by the DNSMint team.

Keywords

mcp

FAQs

Package last updated on 08 Sep 2026

Related posts