Skip to main content
Glama

NFX Signal Investor API: 투자자 찾기, 투자 금액, VC 기업

Apify의 NFX Signal Investor API를 위한 Python 및 MCP 예제입니다. Signal by NFX 투자자 목록을 구조화된 JSON으로 변환합니다: 벤처 투자자, 그 뒤에 있는 VC 기업, 그리고 각 투자자가 실제로 쓰는 투자 금액.

NFX와 제휴, 보증, 또는 연결되어 있지 않습니다. 방문자가 볼 수 있는 동일한 공개 투자자 목록을 읽습니다.

Watch the walkthrough

텍스트 안내

스타트업을 위한 투자자를 찾는 방법을 검색해 본 적이 있다면, 어려운 부분은 이름을 찾는 것이 아니라 올바른 투자 금액을 가진 올바른 이름을 찾는 것입니다. 이 API는 공개 Signal NFX 투자자 목록에서 시작합니다: 총 349개 목록으로, 103개 섹터와 프리시드부터 시리즈 B까지 4개 스테이지에 걸쳐 있습니다. 먼저 mode: "lists"를 실행하면 각 목록에 대한 slug, 스테이지, 섹터, 투자자 수가 포함된 전체 카탈로그를 얻을 수 있습니다. 라운드에 맞는 slug를 선택하여 listSlugs로 전달하고 mode: "investors"를 사용하면 각 행에 투자자의 이름, 직책, 회사, 프로필 링크, 투자 지역, 그리고 그들이 쓰는 최소, 목표, 최대 투자 금액이 반환됩니다. mode: "firms"로 전환하면 동일한 목록에서 VC 기업 목록을 얻을 수 있으며, 이는 CRM 가져오기에 적합한 형태입니다. enrichWithLinkedIn 또는 enrichWithCrunchbase를 켜면 각 고유 기업에 대해 업계, 규모, 자금, 순위, 상태도 수집됩니다. 소스에 대한 로그인, 쿠키, 토큰이 필요 없습니다. 이는 공개 목록이기 때문입니다.

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

기능

  • 투자 금액(최소, 목표, 최대 USD), 직책, 회사, 프로필 링크가 포함된 투자자

  • 섹터 또는 지역별 VC 기업 목록, 중복 제거 및 가져오기 준비 완료

  • 전체 VC 데이터베이스 카탈로그: 103개 섹터와 4개 스테이지에 걸친 349개 목록

  • 동일한 실행에서 선택적 LinkedIn 및 Crunchbase 기업 보강

  • 전체 목록을 탐색하는 커서 페이지네이션, maxItems로 실행 제한 가능

  • 결과당 과금, 작은 테스트 목록을 스크래핑해도 저렴

입력 매개변수

Field

Type

Default

Description

mode

string

investors

investors, firms 또는 lists.

listSlugs

array

none

가져올 목록 slug, 예: fintech-seed. investorsfirms에 필요.

maxItems

integer

0

반환되는 행 수 제한. 0은 무제한.

pageSize

integer

50

API 페이지당 요청할 투자자 수.

includeFirms

boolean

false

investors 모드에서 기업당 한 행도 출력.

stage

string

none

카탈로그 필터: pre_seed, seed, series_a, series_b.

locationId

string

none

lists 모드의 위치 태그 필터.

enrichWithLinkedIn

boolean

false

각 기업에 LinkedIn 기업 정보 추가.

enrichWithCrunchbase

boolean

false

각 기업에 Crunchbase 데이터 추가.

출력 필드

result_type은 행 종류를 알려줍니다: investor, firm, list 또는 error.

Field

Description

name, position, personUrl, headshotUrl

투자자와 그들의 프로필.

minInvestment, targetInvestment, maxInvestment

USD 단위 투자 금액.

firmName, firmUrl

기업과 그 프로필.

investmentLocations, listMemberships

지역 및 그들이 나타나는 다른 목록.

slug, listUrl, investorCount, stage, vertical

목록 카탈로그 필드.

linkedinIndustry, linkedinSize, linkedinFollowers, linkedinUrl

LinkedIn 보강.

crunchbaseRank, crunchbaseEmployees, crunchbaseStatus, crunchbaseUrl

Crunchbase 보강.

레시피

Apify Store에서 바로 사용할 수 있는 예제입니다. 각각 그대로 실행됩니다.

일정 팁: 이 중 하나를 Task로 저장하고 월간 일정을 연결한 다음 각 실행을 비교하여 섹터에 진입하는 투자자를 파악하세요.

Claude Cowork Desktop에 설치

Install in Claude Cowork Desktop

Cowork는 데스크톱 앱의 자동화 모드입니다. NFX Signal Investor API를 도구로 제공하려면 Apify MCP 서버를 커넥터로 추가하세요.

  1. Claude 데스크톱 앱을 열고 설정 → 커넥터(또는 설정 → 개발자 → 구성 편집)로 이동합니다.

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

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

  2. 이 Actor만 미리 로드된 Apify MCP 서버를 추가합니다:

{
  "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에 설치

Install in 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 (웹사이트)에 설치

Install in Claude (website)

  1. 설정 → 커넥터 → 커넥터 찾아보기로 이동하여 Apify MCP 서버를 검색합니다. 설치합니다.

  2. Apify API 토큰으로 인증하고 johnvc/nfx-signal-investor-api 도구를 활성화합니다.

  3. 채팅에서 + → 커넥터를 열고 Apify를 켭니다.

  4. 또는 사용자 지정 커넥터 추가를 선택하고 https://mcp.apify.com/?tools=actors,docs,johnvc/nfx-signal-investor-api를 붙여넣습니다.

웹에서 Claude 열기: https://claude.ai

Cursor에 설치

Install in Cursor

.cursor/mcp.json 생성:

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

그런 다음 Cursor → 설정 → MCP를 열고 apify 서버에 녹색 점이 표시되는지 확인합니다.

Cursor가 처음이신가요? 여기서 받으세요: https://cursor.com/referral?code=XQP4VBLI3NNX

ChatGPT에 설치

Install in ChatGPT

  1. 프로필 아이콘 → 설정 > 앱. 앱 만들기가 보이지 않으면 고급 설정에서 개발자 모드를 활성화합니다.

  2. 앱 만들기: 이름을 Apify로 지정하고, MCP 서버 URL https://mcp.apify.com/?tools=actors,docs,johnvc/nfx-signal-investor-api, 인증 OAuth.

  3. 만들기를 클릭하고 Apify로 인증합니다.

  4. 채팅에서 + → 개발자 모드를 클릭하고 Apify를 선택합니다.

더 많은 도움: https://docs.apify.com/platform/integrations/mcp

FAQ

내 스타트업을 위한 투자자를 어떻게 찾나요?

mode: "lists"를 실행하여 카탈로그를 확인하고, 섹터와 스테이지에 맞는 slug를 선택한 다음, 해당 slug에 대해 mode: "investors"를 실행하세요. targetInvestment로 정렬하면 각 투자자가 쓰는 수표 금액 순으로 정렬된 타겟 목록을 얻을 수 있습니다.

Signal NFX 로그인이 필요한가요?

아니요. 이 API가 읽는 목록은 signal.nfx.com의 공개 목록이므로 소스에 대한 계정이나 토큰이 필요 없습니다.

한 도시의 VC 기업 목록을 어떻게 얻나요?

san-francisco-bay-area, new-york-city, london과 같은 지리적 목록 slug와 함께 mode: "firms"를 사용하세요.

이것은 Crunchbase 대안인가요?

보완재입니다. 그 플랫폼들은 회사 중심 데이터베이스이고, 이것은 투자자 중심이며 회사 데이터베이스가 거의 공개하지 않는 투자 금액을 포함합니다. 동일한 실행에서 Crunchbase 데이터로 기업을 보강할 수 있습니다.

사람들도 검색합니다

signal nfx, nfx signal investors, how to find investors, list of vc firms, vc database, venture capital data, pre seed investors, early stage investors, scraping investor lists

🪢 n8n에서 사용하기

n8n 커뮤니티 노드로 제공됩니다: n8n-nodes-nfx-signal-investor-api. n8n에서: 설정, 커뮤니티 노드, n8n-nodes-nfx-signal-investor-api 설치 후 모든 워크플로에서 사용할 수 있습니다 (AI 에이전트 도구로도 작동합니다).

🌐 Alpha OSINT 소개

이 예제 저장소는 금융 및 운영 데이터 소스와 API의 도구 모음인 Alpha OSINT의 일부입니다. 관련 도구와 사용 사례는 NFX Signal Investor API 소스 페이지를 참조하세요.

관련 링크

Last Updated: 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