Tools/Insider trades (Form 4)

insider.clusters

5 crread-only

Market-wide insider cluster scan: companies where several distinct insiders made open-market buys (or sells) inside a window — the high-conviction cluster signal. Returns tickers ranked by distinct-insider count and total value.

Parameters#

ParameterTypeDescription
daysoptnumberLookback window in days (default 30, max 180)
min_insidersoptnumberMinimum distinct insiders to qualify (default 2)
sideoptstringCluster direction (default 'buy')one of: buy, sell
limitoptnumberMax tickers (1-100, default 25)

Example call#

bash
curl -X POST https://arkolith.com/api/mcp \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "insider.clusters",
    "arguments": {
      "side": "buy",
      "days": 30,
      "min_insiders": 3
    }
  }
}'

Example response#

json
{
  "side": "buy",
  "window_days": 30,
  "clusters": [
    { "ticker": "SMCI", "distinct_insiders": 4, "total_value_usd": 6100000, "buys": 7 },
    { "ticker": "PARA", "distinct_insiders": 3, "total_value_usd": 2800000, "buys": 5 }
  ]
}