apify
NFX Signal Investor API: 투자자 찾기, 투자 금액, VC 기업
Apify의 NFX Signal Investor API를 위한 Python 및 MCP 예제입니다. Signal by NFX 투자자 목록을 구조화된 JSON으로 변환합니다: 벤처 투자자, 그 뒤에 있는 VC 기업, 그리고 각 투자자가 실제로 쓰는 투자 금액.
NFX와 제휴, 보증, 또는 연결되어 있지 않습니다. 방문자가 볼 수 있는 동일한 공개 투자자 목록을 읽습니다.

텍스트 안내
스타트업을 위한 투자자를 찾는 방법을 검색해 본 적이 있다면, 어려운 부분은 이름을 찾는 것이 아니라 올바른 투자 금액을 가진 올바른 이름을 찾는 것입니다. 이 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 |
| string |
|
|
| array | none | 가져올 목록 slug, 예: |
| integer |
| 반환되는 행 수 제한. |
| integer |
| API 페이지당 요청할 투자자 수. |
| boolean |
|
|
| string | none | 카탈로그 필터: |
| string | none |
|
| boolean |
| 각 기업에 LinkedIn 기업 정보 추가. |
| boolean |
| 각 기업에 Crunchbase 데이터 추가. |
출력 필드
result_type은 행 종류를 알려줍니다: investor, firm, list 또는 error.
Field | Description |
| 투자자와 그들의 프로필. |
| USD 단위 투자 금액. |
| 기업과 그 프로필. |
| 지역 및 그들이 나타나는 다른 목록. |
| 목록 카탈로그 필드. |
| LinkedIn 보강. |
| Crunchbase 보강. |
레시피
Apify Store에서 바로 사용할 수 있는 예제입니다. 각각 그대로 실행됩니다.
일정 팁: 이 중 하나를 Task로 저장하고 월간 일정을 연결한 다음 각 실행을 비교하여 섹터에 진입하는 투자자를 파악하세요.
Claude Cowork Desktop에 설치

Cowork는 데스크톱 앱의 자동화 모드입니다. NFX Signal Investor API를 도구로 제공하려면 Apify MCP 서버를 커넥터로 추가하세요.
Claude 데스크톱 앱을 열고 설정 → 커넥터(또는 설정 → 개발자 → 구성 편집)로 이동합니다.
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
이 Actor만 미리 로드된 Apify MCP 서버를 추가합니다:
{
"mcpServers": {
"apify": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.apify.com/?tools=actors,docs,johnvc/nfx-signal-investor-api"]
}
}
}앱을 다시 시작하고 OAuth 프롬프트를 완료하거나 커넥터 설정에서 Apify API 토큰을 추가합니다.
Cowork에게 NFX Signal Investor API를 실행하도록 요청합니다.
데스크톱 앱을 다운로드하고 무료 평가판을 시작하세요: https://claude.ai/referral/uIlpa7nPLg 더 많은 도움: https://docs.apify.com/platform/integrations/claude-desktop
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 (웹사이트)에 설치

설정 → 커넥터 → 커넥터 찾아보기로 이동하여 Apify MCP 서버를 검색합니다. 설치합니다.
Apify API 토큰으로 인증하고
johnvc/nfx-signal-investor-api도구를 활성화합니다.채팅에서 + → 커넥터를 열고 Apify를 켭니다.
또는 사용자 지정 커넥터 추가를 선택하고
https://mcp.apify.com/?tools=actors,docs,johnvc/nfx-signal-investor-api를 붙여넣습니다.
웹에서 Claude 열기: https://claude.ai
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에 설치

프로필 아이콘 → 설정 > 앱. 앱 만들기가 보이지 않으면 고급 설정에서 개발자 모드를 활성화합니다.
앱 만들기: 이름을 Apify로 지정하고, MCP 서버 URL
https://mcp.apify.com/?tools=actors,docs,johnvc/nfx-signal-investor-api, 인증 OAuth.만들기를 클릭하고 Apify로 인증합니다.
채팅에서 + → 개발자 모드를 클릭하고 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 소스 페이지를 참조하세요.
관련 링크
Apify Store의 Actor: https://apify.com/johnvc/nfx-signal-investor-api?fpr=9n7kx3
문제 보고: https://apify.com/johnvc/nfx-signal-investor-api/issues/open?fpr=9n7kx3
Last Updated: 2026.08.24
This server cannot be installed
Maintenance
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
- AlicenseAqualityDmaintenanceProvides 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.1320MIT
- AlicenseAqualityBmaintenanceProvides 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.18187MIT
- AlicenseNot gradedqualityCmaintenanceEnables enriching person and company data using the People Data Labs API through conversational queries.12MIT
- AlicenseNot gradedqualityCmaintenanceEnables AI agents to query LinkedIn-adjacent company and employee data from Coresignal via MCP, supporting natural language requests through the Pipeworx gateway.14MIT
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.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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