kela
CLI  ·  MCP server  ·  REST API  ·  Pricing

Build a fund-data agent in 60 seconds.

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

MCP 2024-11-05 48 tools published Same price as humans Try-before-you-pay Full audit trail

Get 2,500 free credits → View tool catalogue

60-second quickstart — Claude Code

# 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.

For other MCP clients

{
  "mcpServers": {
    "kela": {
      "url": "https://www.kela.com/mcp",
      "auth": { "type": "bearer", "token": "vdr_YOUR_API_KEY" }
    }
  }
}

OpenAI Assistants / function calling

# 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")),
)

Direct REST (for any framework)

# 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 }

Why agents pick Kela

Same price as humans

Tool prices are identical whether a human clicks the button or your agent invokes the MCP. No agent-tax, no different SKUs. View pricing.

Try before you pay

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.

Full audit trail

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.

Human approval gate

Mutating tools (create_*, send_*) write to an approval queue. The GP clicks Approve before anything leaves the building. Reduces customer fear of agent autonomy.

Trust signals published

30-day calls / success-rate / p95 latency per tool — see tools.json. Pick tools with track record, not just specs.

Bring-your-own-data

Tools can read from the customer's Google Drive, SharePoint, Egnyte, or any MCP source. No data migration; no copy in Kela's storage.


What you can build

Internal fund agent (live inside the GP)

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.

Embedded agent in a fund-tech product

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.

Public agent product (Claude / ChatGPT marketplace)

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.


Pricing for agent builders

Same tiered pricing humans pay. Pull /.well-known/tools.json programmatically to predict cost (and now reliability) before invoking:

TierCreditsUSDExamples
read_fast1$0.01list_deals, get_lp
read_multi2$0.02get_agent_context
read_compute5$0.05run_pricer, compute_waterfall
write10$0.10create_deal (human-approved)
ai_light25$0.25vdr_analyze, generate_odd
ai_heavy50$0.50generate_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.


Safety guarantees


Discovery files


Building something we should know about? Tell us — we ship new tools weekly and prioritise based on agent demand.