trustmrr-mcp
v1.0.1
Published
MCP server for TrustMRR — access verified startup revenue data from 4,800+ startups
Maintainers
Readme
TrustMRR MCP Server
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.jsAPI
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
