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"を実行すると、各リストのスラッグ、ステージ、セクター、投資家数を含むカタログ全体が得られます。ラウンドに合うスラッグを選び、mode: "investors"listSlugsとして渡すと、各行に投資家の名前、役職、ファーム、プロフィールリンク、投資地域、そして彼らが書く最小・目標・最大投資額が返ってきます。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で実行を制限可能

  • 結果ごとの課金なので、小さなテストリストのスクレイピングは低コスト

入力パラメータ

フィールド

デフォルト

説明

mode

string

investors

investorsfirms、またはlists

listSlugs

array

none

取得するリストスラッグ。例: fintech-seedinvestorsfirmsで必須。

maxItems

integer

0

返される行数の上限。0は無制限を意味します。

pageSize

integer

50

APIページごとに要求する投資家数。

includeFirms

boolean

false

investorsモードで、ファームごとに1行も出力します。

stage

string

none

カタログをフィルタリング: pre_seedseedseries_aseries_b

locationId

string

none

listsモードのロケーションタグフィルター。

enrichWithLinkedIn

boolean

false

各ファームにLinkedInのファームグラフィックスを追加。

enrichWithCrunchbase

boolean

false

各ファームにCrunchbaseデータを追加。

出力フィールド

result_typeは行の種類を示します: investorfirmlist、またはerror

フィールド

説明

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ストアにある既製の例です。それぞれそのまま実行できます。

スケジュールのヒント: これらのいずれかをタスクとして保存し、毎月のスケジュールを設定して、各実行を差分比較することで、あなたのセクターに参入する投資家を把握できます。

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. 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"を実行してカタログを確認し、セクターとステージに一致するスラッグを選び、それらに対してmode: "investors"を実行します。targetInvestmentで並べ替えると、各投資家が書くチェック順に並んだターゲットリストが得られます。

Signal NFXのログインは必要ですか?

いいえ。これが読み取るリストはsignal.nfx.comの公開リストなので、ソースにはアカウントやトークンは不要です。

1つの都市のVCファームのリストを取得するにはどうすればよいですか?

mode: "firms"を、san-francisco-bay-areanew-york-citylondonなどの地理的なリストスラッグとともに使用します。

これは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