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

@domainproof/mcp

v0.1.1

Published

MCP server for DomainProof domain-ownership verification — lets AI agents claim, verify, and monitor domains.

Readme

@domainproof/mcp

An MCP server that lets an AI agent claim, verify, and monitor domains through DomainProof — no browser, no dashboard, just tool calls.

Every tool call maps to one @domainproof/sdk method, and every SDK Result<T> error becomes an MCP tool error with an actionable message (bad key, not found, rate limit, ...). Runs two ways: hosted, over Streamable HTTP — no install, no process to manage — or as a local stdio/npx subprocess.

Install

The hosted server at mcp.domainproof.dev is the primary way to use this — for Claude Code:

claude mcp add --transport http domainproof https://mcp.domainproof.dev/mcp --header "Authorization: Bearer $DOMAINPROOF_API_KEY"

Or by hand, in any client that reads an MCP servers JSON config:

{
  "mcpServers": {
    "domainproof": {
      "type": "http",
      "url": "https://mcp.domainproof.dev/mcp",
      "headers": {
        "Authorization": "Bearer dp_test_..."
      }
    }
  }
}

Every request needs Authorization: Bearer <DomainProof API key> — missing or malformed, and the server 401s with a message pointing back here. A valid-looking but wrong/revoked key isn't rejected at this layer: it reaches a tool call, which fails the same way any other @domainproof/sdk call with a bad key does (invalid_api_key, described in the tool's own error result).

Run it yourself instead (stdio/npx)

No hosted dependency, no network hop between the MCP process and the tool call — useful offline, air-gapped, or if you'd rather run your own process:

claude mcp add domainproof -e DOMAINPROOF_API_KEY=dp_test_... -- npx -y @domainproof/mcp

Or by hand:

{
  "mcpServers": {
    "domainproof": {
      "command": "npx",
      "args": ["-y", "@domainproof/mcp"],
      "env": {
        "DOMAINPROOF_API_KEY": "dp_test_..."
      }
    }
  }
}

Config

| Env var | Required? | For | | ---------------------- | --------- | ------------------------------------------------------------------------------------- | | DOMAINPROOF_API_KEY | Yes | Fails fast with a setup message on startup if missing. | | DOMAINPROOF_BASE_URL | No | Defaults to the production API. Override for local dev, e.g. http://localhost:3001. |

Getting a key

You'll need an API key from a DomainProof project — create one from your dashboard, which mints a dp_test_... and a dp_live_... key together. Use the dp_test_... key while you or your agent are getting the flow right: test-mode keys only work against .test sandbox domains, which never touch real DNS, so an agent can claim/verify/regenerate freely without publishing anything for real. Switch to the dp_live_... key once you're pointing it at a real domain.

Tools

| Tool | Read-only? | Description | | ------------------------ | ---------- | --------------------------------------------------------------------------------------------------------- | | claim_domain | No | Claim a hostname for this project and issue its verification challenge. | | list_domains | Yes | List domains claimed under this project; filter by externalId/domain, paginate with limit/cursor. | | get_domain | Yes | Get a single claimed domain by id. | | verify_domain | No | Trigger a fresh verification check; poll every 20-30s until status leaves pending. | | regenerate_challenge | No | Issue a fresh challenge and DNS record for a pending/failed domain. | | list_domain_events | Yes | A domain's event timeline (claimed, verified, failed, ...). | | get_setup_instructions | Yes | The DNS record (type/host/value), current status, and hosted verification link for one domain. |

Every tool returns concise JSON in its text content — no prose padding — and every tool is annotated (readOnlyHint, destructiveHint, idempotentHint, openWorldHint) so a client can reason about which calls are safe to retry or run without confirmation.

Local development

pnpm --filter mcp build
DOMAINPROOF_API_KEY=dp_test_... node packages/mcp/dist/cli.js

Point an MCP client's command/args at that built dist/cli.js to exercise a local stdio build before publishing. dist/index.js is the package's library entry (createServer, the Streamable HTTP transport) — what apps/api imports to serve the hosted endpoint — not something you run directly.