What Caplia MCP does
Caplia is an MCP server for venture-capital pitch-deck scoring and deal-flow management. AI agents — Claude Desktop, Cursor, ChatGPT, Windsurf, or any custom MCP client — submit pitch decks, get back CRI quality scores plus thesis-fit scores, list companies in the caller's pipeline, pull data-room contents, and poll async jobs.
Built for VC funds, accelerators, angel networks, and corporate-development teams.
The 12 tools
Read (require read scope)
caplia_search— find companies in your pipeline by namecaplia_list_companies— list companies, filter by stage or viewcaplia_get_company— full profile for one companycaplia_get_company_scores— CRI score + per-thesis fitcaplia_get_company_metrics— traction metricscaplia_list_company_documents— list data-room filescaplia_get_document_url— 1-hour signed download URLcaplia_list_theses— active investment thesescaplia_list_views— configured pipeline viewscaplia_get_view_companies— companies in a specific viewcaplia_get_job— poll an async job (e.g. a deck being scored)
Write (require write scope)
caplia_submit_deck— submit a PDF for CRI + thesis scoring (async, max 50 MB)
Endpoints
- Production:
https://mcp.venture.caplia.ai/— keys prefixedcap_inv_live_* - Sandbox:
https://mcp-sandbox.venture.caplia.ai/— keys prefixedcap_inv_test_*
Transport: Streamable HTTP (single POST endpoint, JSON-RPC 2.0). Protocol version 2024-11-05.
Authentication
Bearer-token, same as the Caplia REST API. Mint a key from Settings → API Keys in the Caplia portal.
Authorization: Bearer cap_inv_live_<32 chars>
Configure in Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"caplia": {
"url": "https://mcp.venture.caplia.ai/",
"headers": {
"Authorization": "Bearer cap_inv_live_YOUR_KEY_HERE"
}
}
}
}
Restart Claude Desktop. The Caplia tools appear under the plug icon.
What's CRI?
CRI (Caplia Readiness Index) is Caplia's proprietary 0–100 quality score for a company. It rolls up signals across team, market, product, traction, financials, defensibility, and execution, with per-domain breakdowns.
Docs & source
- Docs: https://docs.venture.caplia.ai/integrations/mcp
- MCP Registry:
io.github.Caplia-Tech/capliav1.0.0 - Source: https://github.com/Caplia-Tech/caplia-investor (
supabase/functions/mcp-v1/)
Server Config
{
"mcpServers": {
"caplia": {
"url": "https://mcp.venture.caplia.ai/",
"headers": {
"Authorization": "Bearer cap_inv_live_YOUR_KEY_HERE"
}
}
}
}