Tools/Copy trading

copy.leaderboard

1 crread-only

Rank the institutional managers (13F funds) worth copying. Each row is a followable actor — name, manager, book size (AUM), holdings count, latest reported quarter, follower count, the slug (for copy.target.get), and CIK (to follow via watchlist / pull via fund.holdings). Price-derived copy-return fields are withheld unless the price-source policy and freshness gate are green. The agent-native 'who should I copy?' entry point. Sort by book size, recent activity, follower count, or gated track record. Public-domain SEC EDGAR 13F data.

Parameters#

ParameterTypeDescription
sortoptstringaum = biggest book (default), active = most recently filed, followers = most followed, return = best filed-date 13F clone track recordone of: aum, active, followers, return
limitoptnumberMax actors to return (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": "copy.leaderboard",
    "arguments": {
      "sort": "aum",
      "limit": 10
    }
  }
}'

REST mirror: GET /copy/leaderboard, metered identically.

Example response#

json
{
  "sort": "aum",
  "targets": [
    {
      "rank": 1,
      "slug": "berkshire-hathaway-inc",
      "name": "BERKSHIRE HATHAWAY INC",
      "manager": "Warren Buffett",
      "cik": "1067983",
      "aum_usd": 258000000000,
      "holdings_count": 42,
      "followers": 12,
      "copy_return": null,
      "follow": { "kind": "fund", "ref": "1067983" }
    }
  ],
  "price_policy": {
    "price_derived_returns": "withheld",
    "note": "Price-derived return fields are withheld until the price-source policy and freshness gate are green."
  },
  "disclaimer": "Ranking of public disclosures: data, not investment advice."
}