npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@teamnetwork-nz/dnsmadeeasy-mcp-server

v1.1.0

Published

MCP server for DNS Made Easy V2.0 REST API — domain and record management

Readme

DNS Made Easy MCP Server

An MCP (Model Context Protocol) server for the DNS Made Easy V2.0 REST API, providing domain and DNS record management to AI assistants.

Requirements

  • Node.js >= 18
  • DNS Made Easy account with API credentials

Installation

npm install
npm run build

Configuration

Set the following environment variables (or use a .env file):

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | DNSMADEEASY_API_KEY | Yes | — | Your DNS Made Easy API key | | DNSMADEEASY_SECRET_KEY | Yes | — | Your DNS Made Easy secret key | | DNSMADEEASY_READONLY | No | true | Set to false to enable write operations |

MCP Client Setup

Add to your MCP client configuration:

{
  "mcpServers": {
    "dnsmadeeasy": {
      "command": "node",
      "args": ["/path/to/DNSMadeEasy-MCP/dist/index.js"],
      "env": {
        "DNSMADEEASY_API_KEY": "your-api-key",
        "DNSMADEEASY_SECRET_KEY": "your-secret-key",
        "DNSMADEEASY_READONLY": "false"
      }
    }
  }
}

Available Tools

Connection

| Tool | Description | |------|-------------| | check_connection | Verify API credentials and reachability without fetching domain data. Returns total domain count and auth status. |

Domains (always available)

| Tool | Description | |------|-------------| | list_domains | List all managed domains, optionally filtered by name substring. Supports pagination. | | get_domain | Get full details for a single domain by domainId or domainName. |

Domains (write — requires DNSMADEEASY_READONLY=false)

| Tool | Description | |------|-------------| | create_domain | Add a new managed domain by apex name (e.g. example.com). | | update_domain | Update settings for an existing domain by domainId. | | delete_domain | Delete a managed domain by domainId. |

Records (always available)

| Tool | Description | |------|-------------| | list_records | List DNS records for a domain (by domainId or domainName). Filter by record type or name substring. | | get_record | Get a specific record by domainId + recordId. |

Records (write — requires DNSMADEEASY_READONLY=false)

| Tool | Description | |------|-------------| | create_record | Create a new DNS record on a domain. | | update_record | Update an existing DNS record. | | delete_record | Delete a DNS record. |

Supported Record Types

A, AAAA, ANAME, CNAME, HTTPRED, MX, NS, PTR, SRV, TXT, SPF, SOA

Notes

  • Authentication: Requests are signed with HMAC-SHA1. Your system clock must be within 30 seconds of UTC — clock skew causes 403 errors.
  • Rate limits: 150 requests per 5-minute sliding window (~0.5 req/s average).
  • Dates: Domain created and updated timestamps are returned as human-readable strings in the system locale timezone. API authentication headers always use UTC as required by the API.
  • Record names: An empty string ("") for the name field means the apex/root of the domain. Subdomain labels (e.g. "www", "mail") do not include the domain name.
  • Read-only mode: Write tools are not registered unless DNSMADEEASY_READONLY=false. This is the safe default.