Caplia

Created By
Caplia-Techa month ago
Caplia is an MCP server for venture-capital pitch-deck scoring and deal-flow management. AI agents — Claude Desktop, Cursor, ChatGPT, Windsurf, or any MCP client — submit pitch decks, get back CRI (Caplia Readiness Index) 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. 12 tools (search/list/get companies, get CRI + thesis scores, list documents + signed URLs, submit decks for scoring). Production: https://mcp.venture.caplia.ai/ (cap_inv_live_* keys). Sandbox: https://mcp-sandbox.venture.caplia.ai/ (cap_inv_test_* keys). Auth: Bearer token from Caplia portal → Settings → API Keys. Docs: https://docs.venture.caplia.ai/integrations/mcp
Overview

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 name
  • caplia_list_companies — list companies, filter by stage or view
  • caplia_get_company — full profile for one company
  • caplia_get_company_scores — CRI score + per-thesis fit
  • caplia_get_company_metrics — traction metrics
  • caplia_list_company_documents — list data-room files
  • caplia_get_document_url — 1-hour signed download URL
  • caplia_list_theses — active investment theses
  • caplia_list_views — configured pipeline views
  • caplia_get_view_companies — companies in a specific view
  • caplia_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 prefixed cap_inv_live_*
  • Sandbox: https://mcp-sandbox.venture.caplia.ai/ — keys prefixed cap_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

Server Config

{
  "mcpServers": {
    "caplia": {
      "url": "https://mcp.venture.caplia.ai/",
      "headers": {
        "Authorization": "Bearer cap_inv_live_YOUR_KEY_HERE"
      }
    }
  }
}
Project Info
Created At
a month ago
Updated At
a month ago
Author Name
Caplia-Tech
Star
-
Language
-
License
-
Category

Recommend Servers

View All
Docwand

14 hours ago
//beforeyouship — LLM Cost Modeling From Your Editor
@Indiegoing

Query realistic LLM cost models without leaving your editor. beforeyouship models the **true monthly cost** of an LLM app architecture — retries, prompt caching, batch discounts, infra overhead, and 3×/10× growth — across GPT-5.x, Claude, Gemini, DeepSeek, and more. Not a token calculator: a planning tool for the design phase, before you commit to a stack. **No API key needed to try it** — demo mode covers the six free-tier models. A Pro key from [beforeyouship.dev](https://beforeyouship.dev) unlocks the full 18-model catalog. ## What you can ask - "How much will a RAG chatbot cost at 10,000 requests/day?" - "Compare Claude Haiku vs Gemini Flash pricing for my workload" - "What's the cheapest model for a multi-step agent at scale?" - "Show me current per-token prices for Anthropic models" ## Tools ### `estimate_cost` Full cost model for an architecture at a given usage level. Returns Naive / Realistic / Worst Case monthly cost per model, 3×/10× growth scenarios, and an opinionated recommendation with reasoning. ### `get_model_prices` Current per-1M-token pricing — input, output, cached input, batch — with context windows and staleness metadata. ### `list_archetypes` Seven preset architecture patterns (simple chatbot, chatbot with history, RAG pipeline, multi-model router, coding assistant, document processor, multi-step agent) used as starting points for estimates. ## Setup **Claude Code:** ​```bash claude mcp add --transport http beforeyouship https://beforeyouship.dev/api/mcp ​``` **Cursor / other clients** — add a remote server: ​```json { "mcpServers": { "beforeyouship": { "type": "streamable-http", "url": "https://beforeyouship.dev/api/mcp" } } } ​``` Add an `Authorization: Bearer bys_...` header with a Pro key for the full catalog. ## Try it > Estimate the monthly cost of a RAG pipeline at 10,000 requests/day

14 hours ago