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

launchrank

v0.2.0

Published

LaunchRank CLI and MCP server — run AI search-visibility audits from your terminal or agent.

Readme

launchrank

CLI and MCP server for LaunchRank — run AI search-visibility audits from your terminal or from an AI agent. An audit scores how a product shows up across AI answer surfaces and returns visibility gaps, opportunities, and growth actions.

Install

npm i -g launchrank      # global install
# or run without installing:
npx -y launchrank audit https://example.com

Getting an API key

  1. Sign in at getlaunchrank.com.
  2. Go to Settings → API keys.
  3. Create a key (looks like lr_...) and set it as LAUNCHRANK_API_KEY.

Without a key the CLI prints a local mock audit so you can see the output shape.

Audit usage

export LAUNCHRANK_API_KEY=lr_xxx

launchrank audit https://example.com                     # markdown to stdout
launchrank audit example.com --format json               # JSON to stdout
launchrank audit https://example.com --out audit.md      # write to a file
launchrank audit https://example.com --dry-run           # local mock, no API call

Options:

| Option | Description | | --- | --- | | --format markdown\|json | Output format (default markdown). | | --out <file> | Write output to a file instead of stdout. | | --api-url <url> | Override the app base URL (default https://getlaunchrank.com). | | --token <value> | API key / bearer token. | | --dry-run | Print a local mock audit without calling the API. |

Token resolution: --tokenLAUNCHRANK_API_KEYLAUNCHRANK_AGENT_TOKEN. Exit codes: 0 success, 1 usage error, 2 API error.

Find customers

launchrank scout https://example.com                                  # ranked prospect targets, markdown
launchrank scout example.com --audience "solo SaaS founders" --format json
launchrank scout example.com --category "revenue analytics" --competitors "PostHog,Mixpanel"

Returns ranked customer targets (fit reason, proof signal, outreach angle, ready-to-send opener) plus search queries across Product Hunt, TrustMRR, X, and Reddit. Requires an API key (no mock).

MCP server

launchrank mcp starts a stdio MCP server exposing three tools:

  • run_audit{ url } → structured audit JSON (visibilityScore, summary, promptGaps, opportunities, growthActions).
  • audit_markdown{ url } → the audit as a markdown report.
  • find_customers{ url, category?, audience?, competitors? } → ranked prospect targets with openers and search queries.

Both read the key from LAUNCHRANK_API_KEY (or LAUNCHRANK_AGENT_TOKEN). There is no mock in MCP — without a key the tools return an error.

Claude Code

claude mcp add launchrank -e LAUNCHRANK_API_KEY=lr_xxx -- npx -y launchrank mcp

Cursor / Windsurf

Add to your MCP config JSON:

{
  "mcpServers": {
    "launchrank": {
      "command": "npx",
      "args": ["-y", "launchrank", "mcp"],
      "env": {
        "LAUNCHRANK_API_KEY": "lr_xxx"
      }
    }
  }
}

License

MIT