Prepare the server locally
Run this once before adding it to Claude Code.
git clone https://github.com/AbdelhakRazi/trustmrr-mcp
cd trustmrr-mcpThen follow the repository README for any remaining dependency or build steps.
Add it to Claude Code
Paste the maintainer's config below, then edit any placeholder values.
{
"servers": {
"trustmrr": {
"type": "http",
"url": "https://trustmrr-mcp-production.up.railway.app/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}See the trustmrr-mcp README for full setup instructions.
AuthorizationMake your agent remember this setup
trustmrr's config, env vars, and the gotchas you hit — recalled in every future Claude Code, Cursor, and Codex session.
npx conare@latestFree · one command · indexes the sessions already on disk. Set up in the browser instead →
What it does
- Browse and filter startup listings by revenue, MRR, and growth
- Sort startups by price and sale status
- Retrieve comprehensive financial and growth metrics for specific startups
- Standard MCP protocol support for remote HTTP transport
Tools 2
browse_startupsSearch, filter, and sort startup listings by revenue, MRR, growth, price, category, and sale status.get_startup_detailsRetrieve full details for a specific startup including financials, growth metrics, and pricing.Environment Variables
AuthorizationrequiredBearer token for TrustMRR API authenticationTry it
Original README from AbdelhakRazi/trustmrr-mcp
TrustMRR MCP Server
MCP server for the TrustMRR API. Connects any MCP-compatible AI client to TrustMRR, giving your AI assistant access to startup listings, metrics, and deal analysis.
Key Features
- 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, and pricing
Getting Started
Creating an API key
Sign in to TrustMRR and generate an API key from your account settings.
MCP client configuration
<details> <summary>Claude Code CLI</summary>claude mcp add --transport http trustmrr https://trustmrr-mcp-production.up.railway.app/mcp \
--header "Authorization: Bearer YOUR_API_KEY"
</details>
<details>
<summary>GitHub Copilot (IntelliJ IDEs)</summary>
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"
}
}
}
}
</details>
<details>
<summary>GitHub Copilot (Visual Studio Code)</summary>
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"
}
}
}
}
</details>
<details>
<summary>Gemini CLI</summary>
Create or edit ~/.gemini/settings.json:
{
"mcpServers": {
"trustmrr": {
"httpUrl": "https://trustmrr-mcp-production.up.railway.app/mcp",
"httpHeaders": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
</details>
<details>
<summary>Cursor</summary>
Add to your MCP settings:
{
"servers": {
"trustmrr": {
"type": "http",
"url": "https://trustmrr-mcp-production.up.railway.app/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
</details>
Other clients
TrustMRR MCP server follows the standard MCP protocol and works with any client that supports:
- Remote MCP servers
- Streamable HTTP transport
Example prompts
- 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?
License
MIT