基金动量 MCP:AI 代理的实时 VC 基金数据
2 分•作者: darius88•11 天前
Fund Momentum 追踪 970 多个活跃部署的风险投资基金,并提供实时的 GP(普通合伙人)信号。我们刚刚推出了一台 MCP 服务器,可将这些数据提供给任何 AI 代理或 LLM(大型语言模型)工作流。
**功能介绍**
通过 JSON-RPC 2.0 提供五种工具:
* **search_funds** — 按阶段、国家、行业筛选
* **get_fund** — 获取基金的完整资料、投资理念、投资规模、GP 信息
* **get_fund_signals** — 获取实时的 GP 信号、部署状态、看涨/逆势投资角度
* **match_startup** — 描述您的初创公司,获取排名前 10 的匹配投资人及其理由
* **get_gp_profile** — 获取单个合伙人的信息
**代理原生定价**
按调用次数计费,而非订阅。每次调用 0.01 欧元。无月度重置。积分永不过期。每次响应的 _meta 中都包含 credits_remaining(剩余积分)。
**自助注册(无需人工)**
```bash
curl -X POST https://fundmomentum.vc/_api/agent/register \
-H "Content-Type: application/json" \
-d '{"agent_name": "my-workflow", "email": "ops@company.com"}'
```
**立即返回 API 密钥**
**Claude Desktop 配置**
```json
{
"mcpServers": {
"fund-momentum": {
"url": "https://fundmomentum.vc/_api/mcp",
"headers": { "X-API-Key": "YOUR_KEY" }
}
}
}
```
查看原文
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.<p>What it does<p>Five tools via JSON-RPC 2.0:<p>• search_funds — filter by stage, country, industry<p>• get_fund — full profile, thesis, check size, GPs<p>• get_fund_signals — live GP signals, deployment status, bullish/contrarian angles<p>• match_startup — describe your startup, get top 10 matched investors with reasoning<p>• get_gp_profile — individual partner intelligence<p>Agent-native pricing<p>Credits, not subscriptions. €0.01 per call. No monthly resets. Credits never expire. Every response includes credits_remaining in _meta.<p>Self-registration (no humans)<p>curl -X POST https://fundmomentum.vc/_api/agent/register \<p><pre><code> -H "Content-Type: application/json" \
-d '{"agent_name": "my-workflow", "email": "ops@company.com"}'
</code></pre>
# Returns API key instantly<p>Claude Desktop config
{<p><pre><code> "mcpServers": {
"fund-momentum": {
"url": "https://fundmomentum.vc/_api/mcp",
"headers": { "X-API-Key": "YOUR_KEY" }
}
}
}</code></pre>