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
- Discover —
gpDeals/ MCPlist_gp_deals/ A2Adiscover_deals - Intent —
submitInvestmentIntentwithHUMANorAGENT - Quote —
quoteInvestmentIntent(auto in Phase 0) - Pay —
createDealCheckoutSession→ Stripe Checkout
Endpoints
- A2A Agent Card — Discovery document
/.well-known/agent.json - A2A Manifest — Protocol endpoint map
/.well-known/a2a - MCP Manifest — Tool list + transports
/.well-known/mcp - A2A JSON-RPC — POST message/send & skills
/api/a2a - MCP HTTP — POST { name, arguments }
/api/mcp - GraphQL — gpDeals, submitInvestmentIntent, …
/api/graphql - OpenAPI — Agent platform fragment
/openapi/agent-platform.yaml - llms.txt — LLM-oriented site summary
/llms.txt - Open deals — Human-readable catalog
/deals
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
}
}