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

trustmrr

v1.0.1

Published

CLI for the TrustMRR API

Readme

trustmrr-cli

TypeScript CLI for exploring the TrustMRR verified startup revenue database from the terminal.

trustmrr-cli wraps the TrustMRR API with readable tables by default and raw JSON when you need machine-friendly output for scripts or agents.

Install

npm install -g trustmrr

Node 18+ is required.

Authentication

The CLI resolves credentials in this order:

  1. TRUSTMRR_API_KEY
  2. macOS Keychain via security find-generic-password -s trustmrr -a api-key -w

For predictable local development:

export TRUSTMRR_API_KEY=your_token_here

Quick Examples

Top startups by MRR:

trustmrr top 5
Name       Category            Country      MRR  Revenue  Growth
---------  ------------------  -------  -------  -------  -------
Stan       Content Creation    US        $3.5M    $3.0M   +10.0%
beehiiv    Marketing           US        $2.1M    $1.9M    +7.4%
Loops      Productivity        US      $842.0K  $790.0K   +12.6%

Fastest-growing startups in the US above $10k MRR:

trustmrr --country US --min-mrr 10000 trending 10

Inspect a single company:

trustmrr startup stan

Compare two startups:

trustmrr compare stan beehiiv

Search for a theme:

trustmrr search "creator economy"

See active acquisition listings:

trustmrr acquisitions 8

Commands

trustmrr top [count]

Leaderboard sorted by monthly recurring revenue.

trustmrr top
trustmrr top 20
trustmrr --country US top 10

trustmrr search <query>

Searches startup names and descriptions.

trustmrr search billing
trustmrr --limit 25 search "customer support"

trustmrr startup <slug>

Shows the full detail card for one startup.

trustmrr startup stan

trustmrr compare <slug1> <slug2>

Renders a side-by-side comparison table.

trustmrr compare stan beehiiv

trustmrr trending [count]

Sorts by 30-day growth percentage.

trustmrr trending
trustmrr trending 15

trustmrr category <name> [count]

Filters by category and sorts by MRR.

trustmrr category "Content Creation"
trustmrr category Fintech 20

trustmrr acquisitions [count]

Shows for-sale startups with financials and asking price.

trustmrr acquisitions
trustmrr acquisitions 12

trustmrr countries

Lists countries represented in the dataset, including counts.

trustmrr countries
trustmrr countries --json

trustmrr categories

Lists categories represented in the dataset, including counts.

trustmrr categories
trustmrr categories --json

Global Flags

--json          Output JSON instead of formatted tables
--limit <n>     Override default count
--country <cc>  Filter list commands by 2-letter country code
--min-mrr <n>   Minimum MRR filter
--max-mrr <n>   Maximum MRR filter

Agent Integration

Use --json when another program or agent needs the raw structured result:

trustmrr --json top 3
trustmrr --json search "billing"
trustmrr --json startup stan
trustmrr --json compare stan beehiiv

Example agent workflow:

1. Run trustmrr --json search "creator economy"
2. Filter for US startups over $10k MRR
3. Run trustmrr --json compare <slug1> <slug2>
4. Summarize growth, revenue, and acquisition status

Development

npm install
npm test
npm run build
npx tsx src/index.ts top 3

Links

  • TrustMRR: https://trustmrr.com
  • Starkslab: https://starkslab.com