基金动量MCP:人工智能代理的实时风险投资基金数据

2作者: darius887 天前原帖
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。没有月度重置,积分永不过期。每个响应中包含剩余积分信息。 **自助注册(无需人工干预)** 使用以下命令进行注册: ```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&#x2F;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:&#x2F;&#x2F;fundmomentum.vc&#x2F;_api&#x2F;agent&#x2F;register \<p><pre><code> -H &quot;Content-Type: application&#x2F;json&quot; \ -d &#x27;{&quot;agent_name&quot;: &quot;my-workflow&quot;, &quot;email&quot;: &quot;ops@company.com&quot;}&#x27; </code></pre> # Returns API key instantly<p>Claude Desktop config {<p><pre><code> &quot;mcpServers&quot;: { &quot;fund-momentum&quot;: { &quot;url&quot;: &quot;https:&#x2F;&#x2F;fundmomentum.vc&#x2F;_api&#x2F;mcp&quot;, &quot;headers&quot;: { &quot;X-API-Key&quot;: &quot;YOUR_KEY&quot; } } } }</code></pre>