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

@agentdomain/mcp-server

v0.8.0

Published

Secure-by-default MCP server for AgentDomain identity, DNS, email, and renewal workflows

Readme

@agentdomain/mcp-server

Model Context Protocol server for AgentDomain.

It lets MCP-compatible clients discover and manage agent identities through the AgentDomain API.

The server requires Node.js 20 or newer and communicates over standard input and output. It does not open a public listener.

Run

npx -y @agentdomain/mcp-server

For a persistent installation:

npm install -g @agentdomain/mcp-server
agentdomain-mcp

Default tools

The server starts in read-only mode. It advertises only tools that inspect public or authorized account state:

  • check_domain_availability and quote_registration
  • lookup_agent, get_agent, and search_agents
  • list_agent_email and get_agent_email_usage
  • get_dns_capabilities, list_dns_records, and export_dns_zone
  • get_renewal_status and get_service_plan

An API key may authorize additional reads, but merely supplying one never enables mutation tools.

Read-only configuration

Start without a signing credential for discovery, lookup, search, and other read-only operations. For example:

{
  "mcpServers": {
    "agentdomain": {
      "command": "npx",
      "args": ["-y", "@agentdomain/mcp-server"],
      "env": {
        "AGENTDOMAIN_API_URL": "https://api.agentdomain.app/api/v1"
      }
    }
  }
}

This remains read-only even if the MCP process receives an ambient API key or wallet credential.

Enabling write tools

Write tools are omitted from discovery and blocked at dispatch unless AGENTDOMAIN_ENABLE_WRITE_TOOLS is set to the exact value true. Unset or exact false keeps read-only mode. Empty, mixed-case, numeric, whitespace-padded, or otherwise malformed values stop startup rather than guessing intent.

The opt-in exposes registration, email sending/configuration, email deletion, DNS mutations, SSL reconfiguration, renewal funding/withdrawal/automation, plan purchases/scheduling, and registry-visibility changes. Configure the nonsecret opt-in in the MCP process environment, then inject only the narrowly scoped API or signing credential required by the selected operation through a trusted secret-aware launcher. Do not place either credential in MCP client JSON.

Signing credentials

Supply AGENT_PRIVATE_KEY only when an enabled operation requires a wallet signature. Inject it through a trusted external secret store or secret-aware launcher; never paste it into client JSON, source code, shell history, logs, or a repository. Use a dedicated wallet with only the authority and funds required for the intended operation.

Owner-authorized renewal changes require the AgentID NFT owner wallet. Paid plan purchases likewise require an authorized wallet with sufficient USDC. An agent-scoped API key can call its permitted endpoints but cannot sign wallet transactions.

AGENTDOMAIN_BUILDER_CODE is the public ERC-8021 application identifier used to attribute supported Base transactions. It accepts 1-32 lowercase letters, numbers, or underscores and is needed only by tools that explicitly require it.

Pricing options

Registration pricing includes the live domain price and the AgentDomain platform fee. Email setup, SSL certification, DNS orchestration, and AgentID NFT orchestration are included unless the API response states otherwise.

Optional settings include:

  • registerBasename: false to skip Basename
  • registerEns: false to skip ENS
  • emailUsername to customize the primary inbox local part
  • premiumPlan: "included" | "starter" | "pro" | "enterprise" to select a plan

Use quote_registration before signing a payment. Treat the returned quote, limits, expiry, and renewal amount as authoritative for that request.

License

Published package releases are licensed under Apache-2.0.

Links