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

publisher-revenue-audit-mcp

v0.1.2

Published

MCP server for directional public publisher revenue-readiness screening.

Readme

Publisher Revenue Audit MCP

Public CLI and stdio MCP adapter for running a hosted publisher revenue-readiness screen and starting the Sulvo signup flow.

The npm package is intentionally thin. The hosted audit service performs the private analysis server-side; this package ships only the adapter code, output formatting, remote client, and unauthenticated signup helpers.

Install

npx -y -p publisher-revenue-audit-mcp publisher-revenue-audit example.com

For MCP desktop clients that use stdio:

{
  "mcpServers": {
    "publisher-revenue-audit": {
      "command": "npx",
      "args": ["-y", "-p", "publisher-revenue-audit-mcp", "publisher-revenue-audit-mcp"]
    }
  }
}

Clients that support hosted MCP can connect directly to:

https://publisher-revenue-audit.sulvo.com/mcp

CLI

publisher-revenue-audit example.com --json
publisher-revenue-audit audit example.com --max-pages 2 --markdown
publisher-revenue-audit apply example.com --email [email protected]

Signup commands:

publisher-revenue-audit signup start example.com --email [email protected]
SULVO_SIGNUP_PASSWORD="choose-a-strong-password" \
  publisher-revenue-audit signup create-account example.com \
  --email [email protected] \
  --first-name Jane \
  --last-name Doe \
  --password-env SULVO_SIGNUP_PASSWORD \
  --monthly-pageviews 125000
publisher-revenue-audit signup company --user-id returned-user-id --website example.com --country "United States"
publisher-revenue-audit signup ads-txt --user-id returned-user-id
publisher-revenue-audit signup verify-ads-txt --user-id returned-user-id
publisher-revenue-audit signup status --user-id returned-user-id
publisher-revenue-audit signup documents --user-id returned-user-id --adsense-file ./policy-center.png --earnings-file ./earnings.pdf --create-tagless-unit false

Audit options:

  • --json, --markdown, or --markdown-and-json
  • --compact
  • --max-pages 1..5
  • --include-evidence or --no-evidence
  • --api-url URL
  • --api-timeout-ms MS
  • --out path

Signup options:

  • --json or --markdown
  • --signup-api-url URL
  • --signup-timeout-ms MS
  • --out path

MCP Tools

The public stdio MCP server exposes:

  • run_publisher_revenue_audit
  • apply_for_sulvo_account
  • start_sulvo_signup
  • create_sulvo_signup_account
  • update_sulvo_signup_company
  • get_sulvo_signup_ads_txt
  • verify_sulvo_signup_ads_txt
  • get_sulvo_signup_status
  • submit_sulvo_signup_documents

The public MCP server does not read arbitrary local files. Document review from MCP returns dashboard instructions. The CLI document command reads only explicit paths supplied by the operator and enforces file-count and byte limits before upload.

Distribution Boundary

The npm package does not include the private local audit engine, private analysis modules, hosted HTTP backend, authenticated account/report clients, source maps, tests, or private docs.

Public installs call the hosted audit endpoint. Current audit and signup-application flows do not require API keys, OAuth, or a Sulvo login. Account approval remains a separate Sulvo review process before any production inventory work.

Development

npm run build
npm test
npm run smoke:cli
npm run smoke:mcp
npm run check:public-package