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.2.1

Published

MCP server exposing AgentDomain registration and management tools to any LLM

Readme

@agentdomain/mcp-server

Model Context Protocol server for AgentDomain.

Lets any MCP-compatible LLM client (Claude Desktop, ChatGPT desktop apps, custom agents) register and manage agent identities through natural language.

Tools exposed

  • check_domain_availability - is a domain available?
  • quote_registration - price a registration
  • register_agent_identity - register a complete identity (requires wallet)
  • lookup_agent - find an agent by wallet
  • search_agents - search the public registry
  • send_agent_email - send an email from an agent's address
  • list_agent_email - read agent inbox/outbox messages
  • update_primary_email - change the included primary email username
  • create_email_alias - create a Pro/Enterprise receive-and-send email alias
  • delete_email_alias - delete an active email alias
  • list_dns_records - list DNS records for an agent domain
  • create_dns_record - create a user-managed DNS record
  • update_dns_record - update a user-managed DNS record
  • delete_dns_record - delete a user-managed DNS record
  • reconfigure_ssl - rebuild Cloudflare SaaS SSL and DNS validation records
  • fund_renewal_vault - top up an agent's renewal vault
  • withdraw_renewal_vault - build an owner-signed vault withdrawal transaction
  • get_renewal_status - check renewal date, amount, vault balance, and auto-renew state
  • enable_auto_renew - enable on-chain auto-renew with the AgentID NFT owner wallet
  • get_service_plan - inspect per-agent Included/Pro/Enterprise limits
  • purchase_service_plan - upgrade to Pro or Enterprise with x402 USDC

Install

npm install -g @agentdomain/mcp-server

Configure (Claude Desktop example)

~/Library/Application Support/Claude/claude_desktop_config.json:

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

For enable_auto_renew, AGENT_PRIVATE_KEY must be the AgentID NFT owner wallet. Funding can come from any wallet, but the RenewalVault contract only accepts auto-renew changes from the owner.

Pricing flags

Registration pricing includes the live domain price plus the annual AgentDomain platform fee. Email setup, SSL certification, DNS orchestration, and AgentID NFT mint/orchestration are included in that platform fee.

Optional onchain services charge only when enabled:

  • registerBasename: false skips Basename and Basename cost.
  • registerEns: false skips ENS and ENS cost.
  • emailEnabled is still accepted for old clients but is deprecated and ignored.
  • emailUsername customizes the primary inbox local-part; omit it for agent@domain.
  • premiumPlan: "included" | "pro" | "enterprise" selects the per-agent plan at registration.

Use quote_registration first so the agent sees platformFeeUsdc, included email/SSL metadata, optional component costs, and totalUsdc before it signs the x402 payment.

For renewals, get_renewal_status returns the exact next renewal amount and the shortfall to fund before the keeper can reserve and complete the renewal.

For Premium Plans, purchase_service_plan upgrades coverage through the agent's current expiry. Future Premium Plan renewal is charged together with the identity renewal quote in RenewalVault.

Autonomous Premium Plan purchase requires AGENT_PRIVATE_KEY for the owner or a delegated wallet on Base with enough USDC. An agent-scoped API key can operate its own allowed endpoints, but it cannot sign x402 paid purchases by itself.

License

MIT