gurufocus_insider
Pack: gurufocus · Endpoint: https://gateway.pipeworx.io/gurufocus/mcp
Get insider trades for a symbol — corporate insiders buying/selling. Returns insider
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
symbol | string | yes | Stock ticker symbol, e.g. “AAPL” |
page | number | no | Page number for pagination (optional, default 1) |
per_page | number | no | Records per page (optional, default 40) |
_apiKey | string | yes | GuruFocus Data API token |
Example call
Arguments
{
"symbol": "AAPL",
"_apiKey": "your-gurufocus-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/gurufocus/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"gurufocus_insider","arguments":{"symbol":"AAPL","_apiKey":"your-gurufocus-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('gurufocus_insider', {
"symbol": "AAPL",
"_apiKey": "your-gurufocus-api-key"
});
More examples
{
"symbol": "TSLA",
"page": 2,
"per_page": 25,
"_apiKey": "your-gurufocus-api-key"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"gurufocus": {
"url": "https://gateway.pipeworx.io/gurufocus/mcp"
}
}
}
See Getting Started for client-specific install steps.