Skip to main content
Glama

NFX Signal Investor API:查找投资人、查看投资规模与风投机构

面向 Apify 上 NFX Signal Investor API 的 Python 与 MCP 示例。它将 Signal by NFX 的投资人列表转换为结构化 JSON:风险投资人、其背后的风投机构,以及每位投资人实际开出的支票金额。

与 NFX 无关联、未获其认可,也不存在任何联系。它读取的是任何访客都能浏览的同一份公开投资人列表。

观看演示视频

文字版说明

如果你曾搜索过如何为初创公司寻找投资人,难点并不在于找到名字,而在于找到名字正确、支票金额也合适的投资人。该 API 以公开的 Signal NFX 投资人列表为起点:共 349 份,覆盖 103 个行业和从 pre-seed 到 Series B 的四个阶段。先运行 mode: "lists",即可获得完整目录,每项都包含 slug、阶段、行业和投资人数量。挑选与你融资轮次匹配的 slug,以 mode: "investors" 将它们作为 listSlugs 传入,每一行都会返回投资人的姓名、职位、机构、个人主页链接、投资地区,以及他们写下的最低、目标与最高投资额。切换到 mode: "firms",同一份列表会改为返回风投机构列表,这正是 CRM 导入所需的格式。开启 enrichWithLinkedInenrichWithCrunchbase 后,每家去重后的机构还会附带行业、规模、融资、排名和状态等信息。无需登录、Cookie 或令牌即可访问数据源,因为这些是公开列表。

Related MCP server: Frontrun MCP Server

快速开始(Python + uv)

git clone https://github.com/johnisanerd/Apify-NFX-Signal-Investor-API.git
cd Apify-NFX-Signal-Investor-API
cp .env.example .env      # paste your Apify token
uv sync
uv run nfx-signal-investor-api-example.py

获取免费的 Apify 账户和 API 令牌:https://apify.com?fpr=9n7kx3

功能特性

  • 投资人及其支票金额(最低、目标、最高,单位为美元)、职位、机构和个人主页链接

  • 按行业或地区整理的风投机构列表,已去重,可直接导入

  • 完整的 VC 数据库目录:覆盖 103 个行业和四个阶段的 349 份列表

  • 同一次运行中可选的 LinkedIn 与 Crunchbase 机构信息增强

  • 游标分页可遍历整份列表,并可用 maxItems 限制单次运行

  • 按结果计费,因此抓取小型测试列表的成本很低

输入参数

字段

类型

默认值

说明

mode

string

investors

investorsfirmslists

listSlugs

array

要拉取的列表 slug,例如 fintech-seedinvestorsfirms 模式必填。

maxItems

integer

0

返回行数上限。0 表示不限制。

pageSize

integer

50

每页 API 请求的投资人数量。

includeFirms

boolean

false

investors 模式下,同时为每家机构输出一行。

stage

string

过滤目录:pre_seedseedseries_aseries_b

locationId

string

lists 模式下的地区标签过滤器。

enrichWithLinkedIn

boolean

false

为每家机构添加 LinkedIn 企业画像。

enrichWithCrunchbase

boolean

false

为每家机构添加 Crunchbase 数据。

输出字段

result_type 用于标识行类型:investorfirmlisterror

字段

说明

namepositionpersonUrlheadshotUrl

投资人及其个人资料。

minInvestmenttargetInvestmentmaxInvestment

支票金额(美元)。

firmNamefirmUrl

机构及其个人资料。

investmentLocationslistMemberships

投资地区及他们出现的其他列表。

sluglistUrlinvestorCountstagevertical

列表目录字段。

linkedinIndustrylinkedinSizelinkedinFollowerslinkedinUrl

LinkedIn 增强信息。

crunchbaseRankcrunchbaseEmployeescrunchbaseStatuscrunchbaseUrl

Crunchbase 增强信息。

示例方案

Apify Store 上现成的示例,每个都可以直接运行。

定时任务提示: 将其中任意一个保存为 Task,附加月度 Schedule,并对每次运行结果做 diff,以捕捉新进入你行业的投资人。

安装到 Claude Cowork Desktop

安装到 Claude Cowork Desktop

Cowork 是桌面应用的自动化模式。要将 NFX Signal Investor API 作为工具提供给它,请将 Apify MCP server 添加为连接器。

  1. 打开 Claude 桌面应用,进入 Settings → Connectors(或 Settings → Developer → Edit Config)。

    • macOS:~/Library/Application Support/Claude/claude_desktop_config.json

    • Windows:%APPDATA%\Claude\claude_desktop_config.json

  2. 添加 Apify MCP server,并仅预载此 Actor:

{
  "mcpServers": {
    "apify": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.apify.com/?tools=actors,docs,johnvc/nfx-signal-investor-api"]
    }
  }
}
  1. 重启应用并完成 OAuth 提示,或在连接器设置中添加你的 Apify API 令牌。

  2. 让 Cowork 运行 NFX Signal Investor API。

下载桌面应用并开始免费试用:https://claude.ai/referral/uIlpa7nPLg 更多帮助:https://docs.apify.com/platform/integrations/claude-desktop

安装到 Claude Code

安装到 Claude Code

claude mcp add --transport http apify \
  "https://mcp.apify.com/?tools=actors,docs,johnvc/nfx-signal-investor-api"

要使用令牌而非浏览器 OAuth:

claude mcp add --transport http apify \
  "https://mcp.apify.com/?tools=actors,docs,johnvc/nfx-signal-investor-api" \
  --header "Authorization: Bearer YOUR_APIFY_TOKEN"

使用 claude mcp list 验证,或在会话中运行 /mcp

免费试用 Claude Code:https://claude.ai/referral/uIlpa7nPLg Claude Code MCP 文档:https://code.claude.com/docs/en/mcp

安装到 Claude(网页版)

安装到 Claude(网页版)

  1. 进入 Settings → Connectors → Browse connectors,搜索 Apify MCP server 并安装。

  2. 使用你的 Apify API 令牌进行身份验证,并启用工具 johnvc/nfx-signal-investor-api

  3. 在任意聊天中,打开 + → Connectors 并开启 Apify

  4. 或选择 Add custom connector 并粘贴 https://mcp.apify.com/?tools=actors,docs,johnvc/nfx-signal-investor-api

在网页上打开 Claude:https://claude.ai

安装到 Cursor

安装到 Cursor

创建 .cursor/mcp.json

{
  "mcpServers": {
    "apify": {
      "url": "https://mcp.apify.com/?tools=actors,docs,johnvc/nfx-signal-investor-api"
    }
  }
}

然后打开 Cursor → Settings → MCP,确认 apify 服务器显示绿点。

Cursor 新手?在此获取:https://cursor.com/referral?code=XQP4VBLI3NNX

安装到 ChatGPT

安装到 ChatGPT

  1. 点击个人资料图标 → Settings > Apps。如果看不到 Create app,请在 Advanced settings 下启用 Developer mode

  2. Create app:命名为 Apify,MCP Server URL 填写 https://mcp.apify.com/?tools=actors,docs,johnvc/nfx-signal-investor-api,Authentication 选择 OAuth。

  3. 点击 Create 并使用 Apify 授权。

  4. 在聊天中,点击 + → Developer mode 并选择 Apify

更多帮助:https://docs.apify.com/platform/integrations/mcp

常见问题

如何为我的初创公司寻找投资人?

运行 mode: "lists" 查看目录,挑选与你行业和阶段匹配的 slug,然后对其运行 mode: "investors"。按 targetInvestment 排序,即可得到按每位投资人开出的支票金额排序的目标列表。

需要 Signal NFX 登录吗?

不需要。它读取的是 signal.nfx.com 上的公开列表,因此无需账户或令牌即可访问数据源。

如何获取某个城市的风投机构列表?

使用 mode: "firms" 并传入地理列表 slug,例如 san-francisco-bay-areanew-york-citylondon

这是 Crunchbase 的替代方案吗?

它是补充方案。那些平台是以公司为中心的数据库;而本工具以投资人为中心,并包含公司数据库很少公布的支票金额。你可以在同一次运行中用 Crunchbase 数据增强机构信息。

大家还在搜索

signal nfx、nfx signal investors、如何寻找投资人、风投机构列表、vc 数据库、风险投资数据、pre seed 投资人、早期投资人、抓取投资人列表

🪢 在 n8n 中使用

可作为 n8n 社区节点使用:n8n-nodes-nfx-signal-investor-api。在 n8n 中:Settings → Community Nodes,安装 n8n-nodes-nfx-signal-investor-api,然后在任意工作流中使用(它也可以作为 AI Agent 工具使用)。

🌐 关于 Alpha OSINT

本示例仓库是 Alpha OSINT 的一部分,后者是一套金融与运营数据源和 API 工具集。 查看 NFX Signal Investor API 来源页面 以了解相关工具和用例。

相关链接

最后更新:2026.08.24

F
license - not found
Not graded
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    Provides tools to interact with the Harmonic AI API for company and person enrichment, specifically focusing on venture capital deal flow. It enables users to search for companies using natural language, find similar businesses, and retrieve detailed information on organizations and individuals.
    13
    20
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Provides AI agents with native access to the Frontrun API to track venture capital activities on X in real time. It enables users to monitor new follows, detect multi-account convergence signals, and identify trending companies across monitored accounts.
    18
    187
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables AI agents to query LinkedIn-adjacent company and employee data from Coresignal via MCP, supporting natural language requests through the Pipeworx gateway.
    14
    MIT

View all related MCP servers

Related MCP Connectors

  • 1000+ actively deploying VC funds and 367 disclosed LPs, with live investor signals

  • Query buyer intent signals, MEDDIC qualifications, and lead scores from Parsley.

  • Company and market intelligence, news, enrichment, and agentic workflows for dealmakers.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/johnisanerd/Apify-NFX-Signal-Investor-API'

If you have feedback or need assistance with the MCP directory API, please join our Discord server