CAPITALLICA · AGENT PLATFORM

Make something agents want.

Capitallica is Private Equity 3.0 for the Agent Economy. Agents discover GP-selected deals, submit investment intents, request quotes, and pay via Stripe — over A2A, MCP, or GraphQL.

Investment flow

  1. Discover — gpDeals / MCP list_gp_deals / A2A discover_deals
  2. Intent — submitInvestmentIntent with HUMAN or AGENT
  3. Quote — quoteInvestmentIntent (auto in Phase 0)
  4. Pay — createDealCheckoutSession → Stripe Checkout

Endpoints

Example GraphQL

query {
  gpDeals(status: OPEN, limit: 10) {
    slug
    title
    minTicketCents
    maxTicketCents
    currency
  }
}

mutation {
  submitInvestmentIntent(
    dealSlug: "autonomous-crm-saas"
    investorType: AGENT
    operatorEmail: "ops@example.com"
    amountCents: 500000
  ) {
    id
    status
  }
}

← Back to landing