startuphub_investors

Pack: startuphub · Endpoint: https://gateway.pipeworx.io/startuphub/mcp

Search the StartupHub.ai investor database — returns investor profiles (name, type, focus sectors/stages, portfolio, location). Example: startuphub_investors({ q: “sequoia”, limit: 5, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
qstringnoFree-text query — investor / fund name or keyword, e.g. “sequoia”, “seed AI”
limitnumbernoMax number of investors to return (default 10)
sectorstringnoFilter by investor focus sector, e.g. “AI”, “Climate”
stagestringnoFilter by investment stage, e.g. “Seed”, “Series A”
countrystringnoFilter by country / geography, e.g. “United States”
_apiKeystringyesStartupHub.ai API key (${KEY_HINT})

Example call

Arguments

{
  "q": "sequoia",
  "limit": 5,
  "_apiKey": "your-startuphub-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/startuphub/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"startuphub_investors","arguments":{"q":"sequoia","limit":5,"_apiKey":"your-startuphub-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('startuphub_investors', {
  "q": "sequoia",
  "limit": 5,
  "_apiKey": "your-startuphub-api-key"
});

More examples

{
  "q": "seed fund",
  "sector": "AI",
  "stage": "Seed",
  "country": "United States",
  "_apiKey": "your-startuphub-api-key"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "startuphub": {
      "url": "https://gateway.pipeworx.io/startuphub/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 24, 2026