Install
$ agentstack add mcp-abdelhakrazi-trustmrr-mcp ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
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
Claude Code CLI
claude mcp add --transport http trustmrr https://trustmrr-mcp-production.up.railway.app/mcp \
--header "Authorization: Bearer YOUR_API_KEY"
GitHub Copilot (IntelliJ IDEs)
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"
}
}
}
}
GitHub Copilot (Visual Studio Code)
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"
}
}
}
}
Gemini CLI
Create or edit ~/.gemini/settings.json:
{
"mcpServers": {
"trustmrr": {
"httpUrl": "https://trustmrr-mcp-production.up.railway.app/mcp",
"httpHeaders": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
Cursor
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
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
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: AbdelhakRazi
- Source: AbdelhakRazi/trustmrr-mcp
- License: MIT
- Homepage: https://trustmrr-mcp-production.up.railway.app/mcp
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.