Use the TrustMRR CLI from KosmoKrator to call TrustMRR tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.
TrustMRR can be configured headlessly with `kosmokrator integrations:configure trustmrr`.
# Install KosmoKrator first if it is not available on PATH.curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash# Configure and verify this integration.kosmokrator integrations:configure trustmrr --set api_key="$TRUSTMRR_API_KEY" --enable --read allow --write ask --jsonkosmokrator integrations:doctor trustmrr --jsonkosmokrator integrations:status --json
Credentials
Authentication type: API keyapi_key. Configure credentials once, then use the same stored profile from
scripts, coding CLIs, Lua code mode, and the MCP gateway.
Key
Env var
Type
Required
Label
api_key
TRUSTMRR_API_KEY
Secret secret
yes
API Key
Call TrustMRR Headlessly
Use the generic call form when another coding CLI or script needs a stable universal interface.
Every function below can be called headlessly. The generic form is stable across all integrations;
the provider shortcut is shorter but specific to TrustMRR.
trustmrr.trustmrr_get_startup
Read read
Get full details for a single startup on TrustMRR by its slug. Returns revenue data, tech stack, cofounders, social metrics, asking price, and more. Use the slug from the list startups tool.
Browse and filter startups with verified revenue on TrustMRR. Filter by sale status, category, revenue range, MRR, growth, or asking price. All monetary values are in USD cents (e.g. 100000 = $1,000).
Use these parameter tables when building CLI payloads without calling integrations:schema first.
trustmrr.trustmrr_get_startup
Get full details for a single startup on TrustMRR by its slug. Returns revenue data, tech stack, cofounders, social metrics, asking price, and more. Use the slug from the list startups tool.
The startup's URL-friendly identifier (e.g. "shipfast"). Get this from the list startups tool.
trustmrr.trustmrr_list_startups
Browse and filter startups with verified revenue on TrustMRR. Filter by sale status, category, revenue range, MRR, growth, or asking price. All monetary values are in USD cents (e.g. 100000 = $1,000).
Filter by founder's X (Twitter) handle. Omit the @ symbol.
min_revenue
number
no
Minimum last-30-days revenue in USD cents (e.g. 100000 = $1,000).
max_revenue
number
no
Maximum last-30-days revenue in USD cents.
min_mrr
number
no
Minimum monthly recurring revenue in USD cents.
max_mrr
number
no
Maximum monthly recurring revenue in USD cents.
min_growth
number
no
Minimum 30-day revenue growth as decimal (e.g. 0.1 = 10%).
max_growth
number
no
Maximum 30-day revenue growth as decimal.
min_price
number
no
Minimum asking price in USD cents (e.g. 1000000 = $10,000).
max_price
number
no
Maximum asking price in USD cents.
page
integer
no
Page number for pagination (default: 1).
limit
integer
no
Results per page, 1-50 (default: 10).
Permissions
Headless calls still follow the integration read/write permission policy. Configure read/write defaults
with integrations:configure. Add --force only for trusted automation that should bypass that policy.