startuphub_trends
Pack: startuphub · Endpoint: https://gateway.pipeworx.io/startuphub/mcp
Get the rolling AI-funding trends snapshot from StartupHub.ai — capital deployed, biggest rounds, and hot sectors / stages / exits. Example: startuphub_trends({ _apiKey: “your-key” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
_apiKey | string | yes | StartupHub.ai API key (${KEY_HINT}) |
Example call
Arguments
{
"_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_trends","arguments":{"_apiKey":"your-startuphub-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('startuphub_trends', {
"_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.