gurufocus_insider

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

Get insider trades for a symbol — corporate insiders buying/selling. Returns insider

Parameters

NameTypeRequiredDescription
symbolstringyesStock ticker symbol, e.g. “AAPL”
pagenumbernoPage number for pagination (optional, default 1)
per_pagenumbernoRecords per page (optional, default 40)
_apiKeystringyesGuruFocus 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.

Regenerated from source · build August 24, 2026