REST + MCP · JSON-RPC 2.0
VC intelligence infrastructure for your product.
One endpoint. Five tools. 970+ active funds with live investor signals.
Endpoint
POST https://fundmomentum.vc/_api/mcp
X-API-Key: YOUR_KEY
Content-Type: application/json5 Tools
| Tool | Tier | Input | Output |
|---|---|---|---|
| search_funds | Starter | stage, country, industry, limit | Array: name, slug, country, stage, fundSize, industries, url |
| get_fund | Starter | slug | Full profile + signals (Pro) |
| get_fund_signals | Pro | slug | thesisTags, bullish, contrarian, founderDos, freshnessScore |
| get_gp_profile | Pro | fund_slug, gp_name? | name, characterTags, knownFor, linkedinUrl |
| match_startup | Pro | description, stage?, country? | Top 10 matches with match_reason, match_score |
Code Examples
import requests
response = requests.post(
"https://fundmomentum.vc/_api/mcp",
headers={
"X-API-Key": "YOUR_KEY",
"Content-Type": "application/json"
},
json={
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "search_funds",
"arguments": {
"stage": "seed",
"country": "Germany",
"limit": 10
}
},
"id": 1
}
)
funds = response.json()["result"]["content"][0]["text"]Rate Limits & Meta
| Tier | Calls/mo | Reset |
|---|---|---|
| Starter €49 | 1,000 | Monthly |
| Pro €299 | 10,000 | Monthly |
| Enterprise | Unlimited | — |
Every response includes _meta.calls_used, _meta.calls_limit, _meta.calls_remaining