Fund Momentum tracks 970+ actively deploying VC funds with live GP signals. We just launched an MCP server that makes this data available to any AI agent or LLM workflow.
What it does
Five tools via JSON-RPC 2.0:
• search_funds — filter by stage, country, industry
• get_fund — full profile, thesis, check size, GPs
• get_fund_signals — live GP signals, deployment status, bullish/contrarian angles
• match_startup — describe your startup, get top 10 matched investors with reasoning
• get_gp_profile — individual partner intelligence
Agent-native pricing
Credits, not subscriptions. €0.01 per call. No monthly resets. Credits never expire. Every response includes credits_remaining in _meta.
Self-registration (no humans)
curl -X POST https://fundmomentum.vc/_api/agent/register \
-H "Content-Type: application/json" \
-d '{"agent_name": "my-workflow", "email": "ops@company.com"}'
# Returns API key instantly
Claude Desktop config
{
"mcpServers": {
"fund-momentum": {
"url": "https://fundmomentum.vc/_api/mcp",
"headers": { "X-API-Key": "YOUR_KEY" }
}
}
}
reply