Server data from the Official MCP Registry
Curated investor database: 10,469 VC, angel, PE, and family office firms with contacts, via MCP.
Curated investor database: 10,469 VC, angel, PE, and family office firms with contacts, via MCP.
Remote endpoints: streamable-http: https://mcp.apify.com/?tools=johnvc/startup-investors-data-scraper
Valid MCP server (1 strong, 1 medium validity signals). 1 known CVE in dependencies Imported from the Official MCP Registry. Trust signals: trusted author (12/12 approved).
Endpoint verified ยท Requires authentication ยท 2 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Remote Plugin
No local installation needed. Your AI client connects to the remote endpoint directly.
Add this to your MCP configuration to connect:
{
"mcpServers": {
"io-github-johnisanerd-startup-investors": {
"url": "https://mcp.apify.com/?tools=johnvc/startup-investors-data-scraper"
}
}
}From the project's GitHub README.
The efficient, reliable, and developer-friendly way to use the Startup Investors API.
Actor page: apify.com/johnvc/startup-investors-data-scraper Input schema: apify.com/johnvc/startup-investors-data-scraper/input-schema
The Startup Investors API searches a curated database of over 10,000 investor firms, including venture capital, angel, accelerator, private equity, and family-office investors. Filter by firm type, focus industry, investment stage, country, or a free-text keyword, then optionally pull verified investor contacts (partners and principals) at each firm. Results come back as clean, structured JSON, ready for prospecting, fundraising research, or market analysis.
Clone the repository
git clone https://github.com/johnisanerd/Apify-Startup-Investors-Data-Scraper.git
cd Apify-Startup-Investors-Data-Scraper
Install dependencies with UV
# Install UV if you do not have it:
curl -LsSf https://astral.sh/uv/install.sh | sh
# Install project dependencies:
uv sync
Configure your API key
cp .env.example .env
# Edit .env and add your Apify API key
# Get your free API key at: https://apify.com?fpr=9n7kx3
Run the example
uv run python fetch-startup-investors-scraper.py
export APIFY_API_TOKEN="your_api_key_here"
uv run python fetch-startup-investors-scraper.py
A curated investor database. Over 10,000 investor firms across venture capital, angel, accelerator, private equity, and family-office categories, in one structured source.
Precise filtering. Narrow by firm type, focus industry, investment stage, and country, or run a free-text keyword search across firm names, descriptions, and theses.
Verified contacts on demand. Enable Include_Contacts to add an investor_contacts array to every firm, with each contact's name, job title, email (when available), and LinkedIn URL.
Pagination built in. Combine Max_Results and Offset to page through large result sets across runs, and Order_By for stable ordering.
Predictable, pay-per-use pricing. Billing is per firm returned, plus a per-contact fee when contacts are enabled, with a small per-run start fee and no subscription. Use filters and a low Max_Results to control cost.
Easy to automate. Call it from Python in a few lines, or load it as an MCP tool so assistants like Claude and Cursor can pull investor data for you on demand.
Max_Results and Offset{
"Keyword": "Sequoia",
"Max_Results": 5
}
{
"Firm_Types": ["Venture Capital Investor", "Angel Investor"],
"Focus_Areas": ["Artificial Intelligence"],
"Investment_Stages": ["Seed", "Series A"],
"Countries": ["United States"],
"Max_Results": 25,
"Include_Contacts": true
}
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
Firm_Types | array | No | - | Investor firm types, e.g. Venture Capital Investor, Angel Investor, Accelerator. |
Focus_Areas | array | No | - | Target industries, e.g. Artificial Intelligence, Biotechnology. |
Investment_Stages | array | No | - | Stages, e.g. Pre-Seed, Seed, Series A. |
Countries | array | No | - | Headquarters countries (full English names), e.g. United States. |
Keyword | string | No | - | Free-text search across firm names, descriptions, and theses. |
Max_Results | integer | No | 100 | Maximum firms to return (1-10000). Each firm is billed; keep this low and use filters to control cost. |
Offset | integer | No | 0 | Skip this many firms before returning; combine with Max_Results to paginate. |
Order_By | string | No | created_at | Sort field: created_at, firm_name, firm_country, or firm_type_id. |
Order_Direction | string | No | desc | Sort direction: asc or desc. |
Include_Contacts | boolean | No | false | Add an investor_contacts array to each firm. Billed per contact. |
A real result for the keyword Sequoia (one item per firm; reference profile fields and timestamps are present but trimmed here for readability).
{
"firm_id": 3466,
"firm_type_id": "VC",
"firm_name": "AI Fund",
"firm_city": "Palo Alto",
"firm_state": "California",
"firm_country": "United States",
"firm_zip": "94306",
"firm_website": "https://aifund.ai/",
"firm_linkedin_url": "https://www.linkedin.com/company/aifund",
"twitter_url": "https://www.twitter.com/ai_fund",
"firm_description": "AI Fund is a VC firm made up of AI pioneers, operators, entrepreneurs, and investors, supported by LPs such as NEA, Sequoia and Greylock.",
"firm_stages": ["Pre-Seed", "Seed"],
"firm_focus": ["Software & Internet", "Information Technology"],
"firm_aum": 0,
"last_checked": "2025-05-03T08:14:46Z",
"created_at": "2025-06-12T07:14:44Z",
"updated_at": "2025-06-12T07:14:44Z",
"search_metadata": {
"keyword": "Sequoia",
"max_results": 3,
"total_results_found": 3,
"include_contacts": false
}
}
Each firm record also includes additional reference and profile fields. When Include_Contacts is true, every firm gains an investor_contacts array, where each contact carries name, job title, email (when available), and LinkedIn URL.
You can load the Startup Investors API as an MCP tool so assistants call it for you. The MCP server URL preloads just this one Actor:
https://mcp.apify.com/?tools=actors,docs,johnvc/startup-investors-data-scraper
Authenticate with OAuth in the browser when offered, or with your Apify API token (the same APIFY_API_TOKEN used by the Python example). Get a token at https://console.apify.com/settings/integrations and a free Apify account at https://apify.com?fpr=9n7kx3 .

Cowork is the desktop app's automation mode. To give it the Startup Investors API as a tool, add the Apify MCP server as a connector.
claude_desktop_config.json directly).
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json{
"mcpServers": {
"apify": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.apify.com/?tools=actors,docs,johnvc/startup-investors-data-scraper"
]
}
}
}
Download the desktop app and start a free trial: https://claude.ai/referral/uIlpa7nPLg More help: https://docs.apify.com/platform/integrations/claude-desktop

Claude Code is the command-line tool. Add the Actor's MCP server with one command:
claude mcp add --transport http apify \
"https://mcp.apify.com/?tools=actors,docs,johnvc/startup-investors-data-scraper"
To use a token instead of browser OAuth:
claude mcp add --transport http apify \
"https://mcp.apify.com/?tools=actors,docs,johnvc/startup-investors-data-scraper" \
--header "Authorization: Bearer YOUR_APIFY_TOKEN"
Then verify with claude mcp list, or run /mcp inside a session. Ask Claude Code to call the Startup Investors API.
Try Claude Code free: https://claude.ai/referral/uIlpa7nPLg Claude Code MCP docs: https://code.claude.com/docs/en/mcp

On claude.ai you add Apify as a connector, then enable just this Actor's tool.
johnvc/startup-investors-data-scraper.https://mcp.apify.com/?tools=actors,docs,johnvc/startup-investors-data-scraper, using OAuth when prompted.Open Claude on the web: https://claude.ai

Cursor reads MCP servers from a project file at .cursor/mcp.json.
.cursor/mcp.json:{
"mcpServers": {
"apify": {
"url": "https://mcp.apify.com/?tools=actors,docs,johnvc/startup-investors-data-scraper"
}
}
}
{
"mcpServers": {
"apify": {
"url": "https://mcp.apify.com/?tools=actors,docs,johnvc/startup-investors-data-scraper",
"headers": { "Authorization": "Bearer YOUR_APIFY_TOKEN" }
}
}
}
New to Cursor? Get it here: https://cursor.com/referral?code=XQP4VBLI3NNX

ChatGPT connects to the Apify MCP server through Developer mode (available on ChatGPT Pro, Plus, Business, Enterprise, and Education plans).
https://mcp.apify.com/?tools=actors,docs,johnvc/startup-investors-data-scraperMore help: https://docs.apify.com/platform/integrations/mcp
Use the Startup Investors API to power fundraising research, investor prospecting, and market analysis with reliable, structured data.
Last Updated: 2026.07.14
Be the first to review this server!
by Modelcontextprotocol ยท Developer Tools
Web content fetching and conversion for efficient LLM usage
by Toleno ยท Developer Tools
Toleno Network MCP Server โ Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace ยท Developer Tools
Create, build, and publish Python MCP servers to PyPI โ conversationally.