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 trustmrrNode 18+ is required.
Authentication
The CLI resolves credentials in this order:
TRUSTMRR_API_KEY- macOS Keychain via
security find-generic-password -s trustmrr -a api-key -w
For predictable local development:
export TRUSTMRR_API_KEY=your_token_hereQuick Examples
Top startups by MRR:
trustmrr top 5Name 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 10Inspect a single company:
trustmrr startup stanCompare two startups:
trustmrr compare stan beehiivSearch for a theme:
trustmrr search "creator economy"See active acquisition listings:
trustmrr acquisitions 8Commands
trustmrr top [count]
Leaderboard sorted by monthly recurring revenue.
trustmrr top
trustmrr top 20
trustmrr --country US top 10trustmrr 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 stantrustmrr compare <slug1> <slug2>
Renders a side-by-side comparison table.
trustmrr compare stan beehiivtrustmrr trending [count]
Sorts by 30-day growth percentage.
trustmrr trending
trustmrr trending 15trustmrr category <name> [count]
Filters by category and sorts by MRR.
trustmrr category "Content Creation"
trustmrr category Fintech 20trustmrr acquisitions [count]
Shows for-sale startups with financials and asking price.
trustmrr acquisitions
trustmrr acquisitions 12trustmrr countries
Lists countries represented in the dataset, including counts.
trustmrr countries
trustmrr countries --jsontrustmrr categories
Lists categories represented in the dataset, including counts.
trustmrr categories
trustmrr categories --jsonGlobal 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 filterAgent 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 beehiivExample 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 statusDevelopment
npm install
npm test
npm run build
npx tsx src/index.ts top 3Links
- TrustMRR: https://trustmrr.com
- Starkslab: https://starkslab.com
