Getting Started with TrustMRR MCP Server
TrustMRR MCP server provides a secure, streamlined way to bring TrustMRR's full startup marketplace data into any MCP‑enabled AI client. With direct access to startup listings, metrics, and deal analysis, developers and investors can obtain real‑time insights and actionable recommendations directly from their AI assistant.
Key Features
TrustMRR MCP server provides the following capabilities to your AI agent, enabling it to browse TrustMRR on your behalf, summarize listings, draw conclusions, and surface the best opportunities:
Browse Startups
Search, filter, and sort startup listings by revenue, MRR, growth, price, category, and sale status.
Startup Details
Get full details for any startup including financials, growth metrics, pricing, and metadata.
Analyze Deals
Compare startups by revenue multiples, growth trajectories, and pricing to find the best deals.
Track Growth
Monitor MRR growth rates, revenue trends, and on-sale status across the entire marketplace.
Getting Started
Creating an API key
To use the MCP server, you need an API key from TrustMRR. Sign in to TrustMRR and generate an API key from your account settings.
MCP Client configuration
Use the Claude Code CLI to add TrustMRR MCP server:
claude mcp add --transport http trustmrr \
https://trustmrr-mcp-production.up.railway.app/mcp \
--header "Authorization: Bearer YOUR_API_KEY"
Go to Settings → Tools → AI Assistant → Model Context Protocol (MCP) and add a new server:
{
"servers": {
"trustmrr": {
"type": "http",
"url": "https://trustmrr-mcp-production.up.railway.app/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
Add to your .vscode/mcp.json:
{
"servers": {
"trustmrr": {
"type": "http",
"url": "https://trustmrr-mcp-production.up.railway.app/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
Create or edit ~/.gemini/settings.json:
{
"mcpServers": {
"trustmrr": {
"httpUrl": "https://trustmrr-mcp-production.up.railway.app/mcp",
"httpHeaders": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
Add to your MCP settings:
{
"servers": {
"trustmrr": {
"type": "http",
"url": "https://trustmrr-mcp-production.up.railway.app/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
Other Clients
TrustMRR MCP server follows the standard MCP protocol and works with any client that supports:
- Remote MCP servers
- Streamable HTTP transport
Available Tools
| Tool | Description | Key Parameters |
|---|---|---|
list_startups |
Search and filter startups listed on TrustMRR. Supports pagination, sorting, and filtering by category, revenue, MRR, growth, price, and on-sale status. |
sort, category, onSale,
minRevenue, maxRevenue,
minMrr, maxMrr,
minGrowth, maxGrowth,
minPrice, maxPrice,
page, limit
|
get_startup |
Retrieve full details for a specific startup including MRR, revenue, growth, pricing, and metadata. | slug |
revenue-desc, revenue-asc,
price-desc, price-asc,
multiple-asc, multiple-desc,
growth-desc, growth-asc,
listed-desc, listed-asc,
best-deal
Example Prompts
Here are some example prompts you can use with TrustMRR MCP server:
What startups are currently on sale with MRR above $5k?
Show me the fastest growing SaaS startups listed right now
Get me the details on the startup "example-saas"
What's the best deal on a startup under $50k?