48 MCP tools covering the full fund lifecycle. Plug your Claude, Cursor, ChatGPT, or custom agent into live deal, LP, capital-call, audit, and compliance data — with the same pricing humans pay. 2,500 free credits to start. no card
Get 2,500 free credits → View tool catalogue
# 1. Add Kela to Claude (one line, OAuth flow opens in browser) claude mcp add kela https://www.kela.com/mcp # 2. Ask Claude anything about your fund > Find the LP with the largest commitment who hasn't been contacted in 60 days, and draft a follow-up. # Claude calls (under the hood): # fundos_list_lps → filter by commitment + last_contact # fundos_get_lp(lp_id) → pull full record # fundos_run_agent("lp_fundraising_autopilot", lp_id) → draft # Returns the drafted email for your approval before sending.
{
"mcpServers": {
"kela": {
"url": "https://www.kela.com/mcp",
"auth": { "type": "bearer", "token": "vdr_YOUR_API_KEY" }
}
}
}
# 1. Fetch function-call declarations from Kela curl https://kela.com/api/v1/tools/gemini-declarations \ -H "Authorization: Bearer vdr_YOUR_API_KEY" \ > kela_functions.json # 2. Pass them to your OpenAI Assistants thread from openai import OpenAI client = OpenAI() assistant = client.beta.assistants.create( name="Fund Ops Agent", model="gpt-4o", tools=json.load(open("kela_functions.json")), )
# Tools are also accessible via plain REST — no MCP client needed curl -X POST https://kela.com/api/v1/tools/fundos_list_deals/call \ -H "Authorization: Bearer vdr_YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"args": {"stage": "diligence"}}' # Returns: { "deals": [...], "credits_charged": 1 }
Tool prices are identical whether a human clicks the button or your agent invokes the MCP. No agent-tax, no different SKUs. View pricing.
Packaged tasks (audit pack, ODD, CIM) charge only when the customer downloads, accepts, or chains the output. Refuse it or let 7 days pass → no charge.
Every tool call writes a CreditLedger row with trace_id +
duration + result. Customers see exactly what your agent did
in their /admin/usage-traces dashboard.
Mutating tools (create_*, send_*) write
to an approval queue. The GP clicks Approve before anything
leaves the building. Reduces customer fear of agent autonomy.
30-day calls / success-rate / p95 latency per tool — see tools.json. Pick tools with track record, not just specs.
Tools can read from the customer's Google Drive, SharePoint, Egnyte, or any MCP source. No data migration; no copy in Kela's storage.
Daily "what changed since yesterday" digest. Auto-screen incoming pitch decks. Draft LP follow-ups based on recent meetings. Run risk scans every Monday morning. Generate quarterly LP letters from portfolio data. Best for: a GP team building their own operational AI co-pilot.
You're building DealCloud / Affinity / Carta / Brex-equivalent — and you want AI features grounded in customer data. Embed Kela's MCP as your data layer. Customer pays Kela per call; you keep the product revenue. Best for: vertical SaaS adding AI without rebuilding fund-data infrastructure.
Build a "fund analyst agent" anyone can install in Claude. They connect their Kela account; your agent does the work. Revenue flows through Kela's billing — you focus on the UX. Best for: agent-first startups looking for distribution.
Same tiered pricing humans pay. Pull
/.well-known/tools.json programmatically to predict
cost (and now reliability) before invoking:
| Tier | Credits | USD | Examples |
|---|---|---|---|
| read_fast | 1 | $0.01 | list_deals, get_lp |
| read_multi | 2 | $0.02 | get_agent_context |
| read_compute | 5 | $0.05 | run_pricer, compute_waterfall |
| write | 10 | $0.10 | create_deal (human-approved) |
| ai_light | 25 | $0.25 | vdr_analyze, generate_odd |
| ai_heavy | 50 | $0.50 | generate_cim |
Packaged tasks (audit pack, ODD, CIM, K-1, valuation memo) carry higher per-call prices (1,500–100,000 credits) reflecting outcome value, not LLM cost. 2,500 free credits on signup — enough to try every packaged task at least once.
/.well-known/mcp.json — MCP server descriptor + tool count/.well-known/agents.json — Kela's 8 built-in agents (Agent A–H)/.well-known/tools.json — 48 tools + prices + trust signals/.well-known/oauth-protected-resource — RFC 9728/llms-full.txt — full integration referenceBuilding something we should know about? Tell us — we ship new tools weekly and prioritise based on agent demand.