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-mcp

v1.0.1

Published

MCP server for TrustMRR — access verified startup revenue data from 4,800+ startups

Readme

TrustMRR MCP Server

npm version License: MIT

A Model Context Protocol (MCP) server that gives AI assistants access to verified startup revenue data from TrustMRR.

Browse 4,800+ startups, filter by revenue, MRR, growth, category, and more — all backed by real payment provider data (Stripe, LemonSqueezy, Polar, RevenueCat).

Quick Start

1. Get an API key

Sign up at trustmrr.com and generate an API key from the developer dashboard. Keys start with tmrr_.

2. Add to your MCP client

Claude Desktop

Add to your Claude Desktop config (~/.config/Claude/claude_desktop_config.json on Linux, ~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "trustmrr": {
      "command": "npx",
      "args": ["-y", "trustmrr-mcp"],
      "env": {
        "TRUSTMRR_API_KEY": "tmrr_your_api_key"
      }
    }
  }
}

Cursor

Add to your Cursor MCP settings (.cursor/mcp.json):

{
  "mcpServers": {
    "trustmrr": {
      "command": "npx",
      "args": ["-y", "trustmrr-mcp"],
      "env": {
        "TRUSTMRR_API_KEY": "tmrr_your_api_key"
      }
    }
  }
}

Windsurf

Add to your Windsurf MCP config (~/.windsurf/mcp.json):

{
  "mcpServers": {
    "trustmrr": {
      "command": "npx",
      "args": ["-y", "trustmrr-mcp"],
      "env": {
        "TRUSTMRR_API_KEY": "tmrr_your_api_key"
      }
    }
  }
}

3. Restart your MCP client and start asking!

Available Tools

list_startups

List startups with verified revenue data. Supports extensive filtering and sorting.

Filters: onSale, category, minRevenue, maxRevenue, minMrr, maxMrr, minGrowth, maxGrowth, minPrice, maxPrice, xHandle, page, limit, sort

Sort options: revenue-desc, revenue-asc, price-desc, price-asc, multiple-asc, multiple-desc, growth-desc, growth-asc, listed-desc, listed-asc, best-deal

Categories: ai, saas, developer-tools, fintech, marketing, ecommerce, productivity, design-tools, no-code, analytics, crypto-web3, education, health-fitness, social-media, content-creation, sales, customer-support, recruiting, real-estate, travel, legal, security, iot-hardware, green-tech, entertainment, games, community, news-magazines, utilities, marketplace, mobile-apps

get_startup

Get full details for a single startup by its slug. Returns everything from list_startups plus:

  • Full description (not truncated)
  • Tech stack (framework, language, database, hosting, etc.)
  • Cofounders with X/Twitter handles
  • X follower count
  • Merchant of record status

search_startups_by_founder

Find all startups by a specific founder using their X/Twitter handle (without @).

find_deals

Find the best acquisition deals — startups currently for sale, sorted by lowest revenue multiple. Optionally filter by category, max price, or minimum revenue.

Example Prompts

Once configured, try asking your AI assistant:

  • "Show me the top 10 startups by revenue on TrustMRR"
  • "Find SaaS startups earning between $1k and $5k per month"
  • "What startups are for sale under $10,000?"
  • "Show me the best acquisition deals in the AI category"
  • "Get details about ShipFast including its tech stack"
  • "Find all startups by @marc_louvion"
  • "What are the fastest growing startups right now?"

Development

# Clone the repo
git clone https://github.com/AiToolsforStartups/trustmrr-mcp.git
cd trustmrr-mcp

# Install dependencies
npm install

# Build
npm run build

# Run locally (for testing)
TRUSTMRR_API_KEY=tmrr_your_key node build/index.js

API

This server wraps the TrustMRR API. Rate limit: 20 requests/minute per API key.

All monetary values returned by the API are in USD cents and are automatically converted to human-readable USD format (e.g. $4,250.00).

Credits

Created by Marc Lou and Bartek Golebiowski.

License

MIT