A real public REST API plus a 46-tool MCP server so Claude, Cursor, or any AI client can read your leads, queue calls, enroll sequences, draft invoices — every action your dashboard can do. No extra subscription. Included in every paid plan from $49/mo.
7 endpoints today — calls, SMS, DNC, leads, themes, workspaces, RAG recall. JSON, predictable, cursor-paginated. OpenAPI spec at /api/v1/openapi.json.
Streamable HTTP transport. Works with Claude Desktop, Cursor, Continue, custom agents. Your AI assistant can run any tool your dashboard exposes.
Per-organization API keys with read / read-write scopes. Rotatable. Server-only — never exposed in browser bundles.
Destructive actions (delivering a project, sending an invoice) route through Telegram tap-to-approve so an MCP client never auto-fires anything irreversible.
Get your bearer token from /dashboard/settings/api, then hit any endpoint under striveloom.com/api/v1/*. All responses are JSON, all list endpoints cursor-paginate.
# List the last 50 calls Sophia handled
curl -H "Authorization: Bearer $STRIVELOOM_API_KEY" \
"https://striveloom.com/api/v1/phone/calls?limit=50"
# Filter inbound qualified leads from the last 24h
curl -H "Authorization: Bearer $STRIVELOOM_API_KEY" \
"https://striveloom.com/api/v1/phone/calls?direction=inbound&outcome=qualified_lead"
# Recall over your knowledge base (RAG)
curl -H "Authorization: Bearer $STRIVELOOM_API_KEY" \
-H "Content-Type: application/json" \
-X POST "https://striveloom.com/api/v1/llm-recall" \
-d '{"query": "shipping policy for Canada"}'Add the MCP server to Claude Desktop, Cursor, or any MCP client. 46 tools become available immediately. Ask Claude "what are my qualified leads from yesterday?" and it calls striveloom_recent_leads for you — no copy-paste, no dashboard tab switching.
{
"mcpServers": {
"striveloom": {
"url": "https://striveloom.com/api/mcp",
"transport": "http",
"headers": {
"Authorization": "Bearer YOUR_STRIVELOOM_API_KEY"
}
}
}
}| Capability | Lite · $49 | Starter · $99 | Pro · $299 | Enterprise · $999 |
|---|---|---|---|---|
| API key | Read-only | Read + write | Read + write | Read + write |
| Requests per day | 10,000 | 100,000 | 1,000,000 | Unlimited |
| MCP server (46 tools) | ✓ | ✓ | ✓ | ✓ |
| Webhooks (event push) | — | ✓ | ✓ | ✓ |
| Bearer-scoped tokens | 1 token | 5 tokens | Unlimited | Unlimited |
| Audit log on every API call | 7 days | 30 days | 1 year | Unlimited |
Pick any paid plan to unlock the API + MCP. Start with one curl call, end with your Claude Desktop running your business.