Skip to main content
Glama

Checking Smart Money positions

smart_traders_and_funds_token_balances
Read-only

Get aggregated (not per wallet) smart trader and fund (EXCLUDES whales, large holders, influencers, etc.) token balances and 24h change per chain for all chains (default is ['all'], which queries all supported chains) or specific chain(s). Use filters to narrow down the results.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
requestYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedInput schema / properties / request / anyOf
      Previous value: -[
      -  {
      -    "additionalProperties": true,
      -    "type": "object"
      -  },
      -  {
      -    "description": "Request for smart money token holdings (v1 API) - flattened.",
      -    "properties": {
      -      "chains": {
      -        "description": "Optional list of chains to include. If omitted, defaults to ['all'] (all supported chains). Use 'all' to query all supported chains. Supported chains: arbitrum, avalanche, base, bnb, ethereum, hyperevm, iotaevm, linea, mantle, monad, optimism, plasma, polygon, robinhood, sei, solana, sonic, all",
      -        "items": {
      -          "type": "string"
      -        },
      -        "type": "array"
      -      },
      -      "includeNativeTokens": {
      -        "default": true,
      -        "description": "Whether to include native tokens (ETH, SOL, etc.) in results",
      -        "type": "boolean"
      -      },
      -      "includeSmartMoneyLabels": {
      -        "anyOf": [
      -          {
      -            "items": {
      -              "enum": [
      -                "30D Smart Trader",
      -                "90D Smart Trader",
      -                "180D Smart Trader",
      -                "All Time Smart Trader",
      -                "Fund",
      -                "Smart HL Perps Trader",
      -                "Any Smart Money"
      -              ],
      -              "type": "string"
      -            },
      -            "type": "array"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ],
      -        "default": null,
      -        "description": "Smart money category filters to include"
      -      },
      -      "includeStablecoin": {
      -        "default": true,
      -        "description": "Whether to include stablecoins in results",
      -        "type": "boolean"
      -      },
      -      "minHolders": {
      -        "default": 0,
      -        "description": "Minimum number of smart money holders a token must have to be included (default: 0, no filter)",
      -        "type": "integer"
      -      },
      -      "orderBy": {
      -        "anyOf": [
      -          {
      -            "enum": [
      -              "value_usd",
      -              "balance_24h_percent_change",
      -              "holders_count"
      -            ],
      -            "type": "string"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ],
      -        "default": null,
      -        "description": "Sort field. Pass an exact value above or None for default ('value_usd')."
      -      },
      -      "orderByDirection": {
      -        "default": "DESC",
      -        "description": "Sort direction: 'ASC' or 'DESC' (case-insensitive).",
      -        "enum": [
      -          "ASC",
      -          "DESC",
      -          "asc",
      -          "desc"
      -        ],
      -        "type": "string"
      -      },
      -      "page": {
      -        "default": 1,
      -        "type": "integer"
      -      }
      -    },
      -    "type": "object"
      -  }
      -]New value: +[
      +  {
      +    "additionalProperties": true,
      +    "type": "object"
      +  },
      +  {
      +    "description": "Request for smart money token holdings (v1 API) - flattened.",
      +    "properties": {
      +      "chains": {
      +        "description": "Optional list of chains to include. If omitted, defaults to ['all'] (all supported chains). Use 'all' to query all supported chains. Supported chains: arbitrum, arc, avalanche, base, bnb, ethereum, hyperevm, iotaevm, linea, mantle, monad, optimism, plasma, polygon, robinhood, sei, solana, sonic, all",
      +        "items": {
      +          "type": "string"
      +        },
      +        "type": "array"
      +      },
      +      "includeNativeTokens": {
      +        "default": true,
      +        "description": "Whether to include native tokens (ETH, SOL, etc.) in results",
      +        "type": "boolean"
      +      },
      +      "includeSmartMoneyLabels": {
      +        "anyOf": [
      +          {
      +            "items": {
      +              "enum": [
      +                "30D Smart Trader",
      +                "90D Smart Trader",
      +                "180D Smart Trader",
      +                "All Time Smart Trader",
      +                "Fund",
      +                "Smart HL Perps Trader",
      +                "Any Smart Money"
      +              ],
      +              "type": "string"
      +            },
      +            "type": "array"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Smart money category filters to include"
      +      },
      +      "includeStablecoin": {
      +        "default": true,
      +        "description": "Whether to include stablecoins in results",
      +        "type": "boolean"
      +      },
      +      "minHolders": {
      +        "default": 0,
      +        "description": "Minimum number of smart money holders a token must have to be included (default: 0, no filter)",
      +        "type": "integer"
      +      },
      +      "orderBy": {
      +        "anyOf": [
      +          {
      +            "enum": [
      +              "value_usd",
      +              "balance_24h_percent_change",
      +              "holders_count"
      +            ],
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Sort field. Pass an exact value above or None for default ('value_usd')."
      +      },
      +      "orderByDirection": {
      +        "default": "DESC",
      +        "description": "Sort direction: 'ASC' or 'DESC' (case-insensitive).",
      +        "enum": [
      +          "ASC",
      +          "DESC",
      +          "asc",
      +          "desc"
      +        ],
      +        "type": "string"
      +      },
      +      "page": {
      +        "default": 1,
      +        "type": "integer"
      +      }
      +    },
      +    "type": "object"
      +  }
      +]
  2. Changed1 schema field changed
    • changedInput schema / properties / request / anyOf
      Previous value: -[
      -  {
      -    "additionalProperties": true,
      -    "type": "object"
      -  },
      -  {
      -    "description": "Request for smart money token holdings (v1 API) - flattened.",
      -    "properties": {
      -      "chains": {
      -        "description": "Optional list of chains to include. If omitted, defaults to ['all'] (all supported chains). Use 'all' to query all supported chains. Supported chains: arbitrum, avalanche, base, bnb, ethereum, hyperevm, hyperliquid, iotaevm, linea, mantle, monad, optimism, plasma, polygon, robinhood, ronin, scroll, sei, solana, sonic, unichain, zksync, all",
      -        "items": {
      -          "type": "string"
      -        },
      -        "type": "array"
      -      },
      -      "includeNativeTokens": {
      -        "default": true,
      -        "description": "Whether to include native tokens (ETH, SOL, etc.) in results",
      -        "type": "boolean"
      -      },
      -      "includeSmartMoneyLabels": {
      -        "anyOf": [
      -          {
      -            "items": {
      -              "enum": [
      -                "30D Smart Trader",
      -                "90D Smart Trader",
      -                "180D Smart Trader",
      -                "All Time Smart Trader",
      -                "Fund",
      -                "Smart HL Perps Trader",
      -                "Any Smart Money"
      -              ],
      -              "type": "string"
      -            },
      -            "type": "array"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ],
      -        "default": null,
      -        "description": "Smart money category filters to include"
      -      },
      -      "includeStablecoin": {
      -        "default": true,
      -        "description": "Whether to include stablecoins in results",
      -        "type": "boolean"
      -      },
      -      "minHolders": {
      -        "default": 0,
      -        "description": "Minimum number of smart money holders a token must have to be included (default: 0, no filter)",
      -        "type": "integer"
      -      },
      -      "orderBy": {
      -        "anyOf": [
      -          {
      -            "enum": [
      -              "value_usd",
      -              "balance_24h_percent_change",
      -              "holders_count"
      -            ],
      -            "type": "string"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ],
      -        "default": null,
      -        "description": "Sort field. Pass an exact value above or None for default ('value_usd')."
      -      },
      -      "orderByDirection": {
      -        "default": "DESC",
      -        "description": "Sort direction: 'ASC' or 'DESC' (case-insensitive).",
      -        "enum": [
      -          "ASC",
      -          "DESC",
      -          "asc",
      -          "desc"
      -        ],
      -        "type": "string"
      -      },
      -      "page": {
      -        "default": 1,
      -        "type": "integer"
      -      }
      -    },
      -    "type": "object"
      -  }
      -]New value: +[
      +  {
      +    "additionalProperties": true,
      +    "type": "object"
      +  },
      +  {
      +    "description": "Request for smart money token holdings (v1 API) - flattened.",
      +    "properties": {
      +      "chains": {
      +        "description": "Optional list of chains to include. If omitted, defaults to ['all'] (all supported chains). Use 'all' to query all supported chains. Supported chains: arbitrum, avalanche, base, bnb, ethereum, hyperevm, iotaevm, linea, mantle, monad, optimism, plasma, polygon, robinhood, sei, solana, sonic, all",
      +        "items": {
      +          "type": "string"
      +        },
      +        "type": "array"
      +      },
      +      "includeNativeTokens": {
      +        "default": true,
      +        "description": "Whether to include native tokens (ETH, SOL, etc.) in results",
      +        "type": "boolean"
      +      },
      +      "includeSmartMoneyLabels": {
      +        "anyOf": [
      +          {
      +            "items": {
      +              "enum": [
      +                "30D Smart Trader",
      +                "90D Smart Trader",
      +                "180D Smart Trader",
      +                "All Time Smart Trader",
      +                "Fund",
      +                "Smart HL Perps Trader",
      +                "Any Smart Money"
      +              ],
      +              "type": "string"
      +            },
      +            "type": "array"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Smart money category filters to include"
      +      },
      +      "includeStablecoin": {
      +        "default": true,
      +        "description": "Whether to include stablecoins in results",
      +        "type": "boolean"
      +      },
      +      "minHolders": {
      +        "default": 0,
      +        "description": "Minimum number of smart money holders a token must have to be included (default: 0, no filter)",
      +        "type": "integer"
      +      },
      +      "orderBy": {
      +        "anyOf": [
      +          {
      +            "enum": [
      +              "value_usd",
      +              "balance_24h_percent_change",
      +              "holders_count"
      +            ],
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Sort field. Pass an exact value above or None for default ('value_usd')."
      +      },
      +      "orderByDirection": {
      +        "default": "DESC",
      +        "description": "Sort direction: 'ASC' or 'DESC' (case-insensitive).",
      +        "enum": [
      +          "ASC",
      +          "DESC",
      +          "asc",
      +          "desc"
      +        ],
      +        "type": "string"
      +      },
      +      "page": {
      +        "default": 1,
      +        "type": "integer"
      +      }
      +    },
      +    "type": "object"
      +  }
      +]
  3. Changed1 schema field changed
    • changedInput schema / properties / request / anyOf
      Previous value: -[
      -  {
      -    "additionalProperties": true,
      -    "type": "object"
      -  },
      -  {
      -    "description": "Request for smart money token holdings (v1 API) - flattened.",
      -    "properties": {
      -      "chains": {
      -        "description": "Optional list of chains to include. If omitted, defaults to ['all'] (all supported chains). Use 'all' to query all supported chains. Supported chains: arbitrum, avalanche, base, bnb, ethereum, hyperevm, hyperliquid, iotaevm, linea, mantle, monad, optimism, plasma, polygon, ronin, scroll, sei, solana, sonic, unichain, zksync, all",
      -        "items": {
      -          "type": "string"
      -        },
      -        "type": "array"
      -      },
      -      "includeNativeTokens": {
      -        "default": true,
      -        "description": "Whether to include native tokens (ETH, SOL, etc.) in results",
      -        "type": "boolean"
      -      },
      -      "includeSmartMoneyLabels": {
      -        "anyOf": [
      -          {
      -            "items": {
      -              "enum": [
      -                "30D Smart Trader",
      -                "90D Smart Trader",
      -                "180D Smart Trader",
      -                "All Time Smart Trader",
      -                "Fund",
      -                "Smart HL Perps Trader",
      -                "Any Smart Money"
      -              ],
      -              "type": "string"
      -            },
      -            "type": "array"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ],
      -        "default": null,
      -        "description": "Smart money category filters to include"
      -      },
      -      "includeStablecoin": {
      -        "default": true,
      -        "description": "Whether to include stablecoins in results",
      -        "type": "boolean"
      -      },
      -      "minHolders": {
      -        "default": 0,
      -        "description": "Minimum number of smart money holders a token must have to be included (default: 0, no filter)",
      -        "type": "integer"
      -      },
      -      "orderBy": {
      -        "anyOf": [
      -          {
      -            "enum": [
      -              "value_usd",
      -              "balance_24h_percent_change",
      -              "holders_count"
      -            ],
      -            "type": "string"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ],
      -        "default": null,
      -        "description": "Sort field. Pass an exact value above or None for default ('value_usd')."
      -      },
      -      "orderByDirection": {
      -        "default": "DESC",
      -        "description": "Sort direction: 'ASC' or 'DESC' (case-insensitive).",
      -        "enum": [
      -          "ASC",
      -          "DESC",
      -          "asc",
      -          "desc"
      -        ],
      -        "type": "string"
      -      },
      -      "page": {
      -        "default": 1,
      -        "type": "integer"
      -      }
      -    },
      -    "type": "object"
      -  }
      -]New value: +[
      +  {
      +    "additionalProperties": true,
      +    "type": "object"
      +  },
      +  {
      +    "description": "Request for smart money token holdings (v1 API) - flattened.",
      +    "properties": {
      +      "chains": {
      +        "description": "Optional list of chains to include. If omitted, defaults to ['all'] (all supported chains). Use 'all' to query all supported chains. Supported chains: arbitrum, avalanche, base, bnb, ethereum, hyperevm, hyperliquid, iotaevm, linea, mantle, monad, optimism, plasma, polygon, robinhood, ronin, scroll, sei, solana, sonic, unichain, zksync, all",
      +        "items": {
      +          "type": "string"
      +        },
      +        "type": "array"
      +      },
      +      "includeNativeTokens": {
      +        "default": true,
      +        "description": "Whether to include native tokens (ETH, SOL, etc.) in results",
      +        "type": "boolean"
      +      },
      +      "includeSmartMoneyLabels": {
      +        "anyOf": [
      +          {
      +            "items": {
      +              "enum": [
      +                "30D Smart Trader",
      +                "90D Smart Trader",
      +                "180D Smart Trader",
      +                "All Time Smart Trader",
      +                "Fund",
      +                "Smart HL Perps Trader",
      +                "Any Smart Money"
      +              ],
      +              "type": "string"
      +            },
      +            "type": "array"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Smart money category filters to include"
      +      },
      +      "includeStablecoin": {
      +        "default": true,
      +        "description": "Whether to include stablecoins in results",
      +        "type": "boolean"
      +      },
      +      "minHolders": {
      +        "default": 0,
      +        "description": "Minimum number of smart money holders a token must have to be included (default: 0, no filter)",
      +        "type": "integer"
      +      },
      +      "orderBy": {
      +        "anyOf": [
      +          {
      +            "enum": [
      +              "value_usd",
      +              "balance_24h_percent_change",
      +              "holders_count"
      +            ],
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Sort field. Pass an exact value above or None for default ('value_usd')."
      +      },
      +      "orderByDirection": {
      +        "default": "DESC",
      +        "description": "Sort direction: 'ASC' or 'DESC' (case-insensitive).",
      +        "enum": [
      +          "ASC",
      +          "DESC",
      +          "asc",
      +          "desc"
      +        ],
      +        "type": "string"
      +      },
      +      "page": {
      +        "default": 1,
      +        "type": "integer"
      +      }
      +    },
      +    "type": "object"
      +  }
      +]
  4. Changed1 schema field changed
    • changedInput schema / properties / request / anyOf
      Previous value: -[
      -  {
      -    "additionalProperties": true,
      -    "type": "object"
      -  },
      -  {
      -    "description": "Request for smart money token holdings (v1 API) - flattened.",
      -    "properties": {
      -      "chains": {
      -        "description": "Optional list of chains to include. If omitted, defaults to ['all'] (all supported chains). Use 'all' to query all supported chains. Supported chains: arbitrum, avalanche, base, bnb, ethereum, hyperevm, hyperliquid, iotaevm, linea, mantle, monad, optimism, plasma, polygon, ronin, scroll, sei, solana, sonic, unichain, zksync, all",
      -        "items": {
      -          "type": "string"
      -        },
      -        "type": "array"
      -      },
      -      "includeNativeTokens": {
      -        "default": true,
      -        "description": "Whether to include native tokens (ETH, SOL, etc.) in results",
      -        "type": "boolean"
      -      },
      -      "includeSmartMoneyLabels": {
      -        "anyOf": [
      -          {
      -            "items": {
      -              "enum": [
      -                "30D Smart Trader",
      -                "90D Smart Trader",
      -                "180D Smart Trader",
      -                "All Time Smart Trader",
      -                "Fund",
      -                "Smart HL Perps Trader",
      -                "Any Smart Money"
      -              ],
      -              "type": "string"
      -            },
      -            "type": "array"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ],
      -        "default": null,
      -        "description": "Smart money category filters to include"
      -      },
      -      "includeStablecoin": {
      -        "default": true,
      -        "description": "Whether to include stablecoins in results",
      -        "type": "boolean"
      -      },
      -      "minHolders": {
      -        "default": 0,
      -        "description": "Minimum number of smart money holders a token must have to be included (default: 0, no filter)",
      -        "type": "integer"
      -      },
      -      "orderBy": {
      -        "anyOf": [
      -          {
      -            "type": "string"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ],
      -        "default": null,
      -        "description": "Field to sort by (e.g. 'value_usd', 'holders_count', 'balance_24h_percent_change')"
      -      },
      -      "orderByDirection": {
      -        "default": "DESC",
      -        "description": "Sort direction: 'ASC' or 'DESC'",
      -        "type": "string"
      -      },
      -      "page": {
      -        "default": 1,
      -        "type": "integer"
      -      }
      -    },
      -    "type": "object"
      -  }
      -]New value: +[
      +  {
      +    "additionalProperties": true,
      +    "type": "object"
      +  },
      +  {
      +    "description": "Request for smart money token holdings (v1 API) - flattened.",
      +    "properties": {
      +      "chains": {
      +        "description": "Optional list of chains to include. If omitted, defaults to ['all'] (all supported chains). Use 'all' to query all supported chains. Supported chains: arbitrum, avalanche, base, bnb, ethereum, hyperevm, hyperliquid, iotaevm, linea, mantle, monad, optimism, plasma, polygon, ronin, scroll, sei, solana, sonic, unichain, zksync, all",
      +        "items": {
      +          "type": "string"
      +        },
      +        "type": "array"
      +      },
      +      "includeNativeTokens": {
      +        "default": true,
      +        "description": "Whether to include native tokens (ETH, SOL, etc.) in results",
      +        "type": "boolean"
      +      },
      +      "includeSmartMoneyLabels": {
      +        "anyOf": [
      +          {
      +            "items": {
      +              "enum": [
      +                "30D Smart Trader",
      +                "90D Smart Trader",
      +                "180D Smart Trader",
      +                "All Time Smart Trader",
      +                "Fund",
      +                "Smart HL Perps Trader",
      +                "Any Smart Money"
      +              ],
      +              "type": "string"
      +            },
      +            "type": "array"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Smart money category filters to include"
      +      },
      +      "includeStablecoin": {
      +        "default": true,
      +        "description": "Whether to include stablecoins in results",
      +        "type": "boolean"
      +      },
      +      "minHolders": {
      +        "default": 0,
      +        "description": "Minimum number of smart money holders a token must have to be included (default: 0, no filter)",
      +        "type": "integer"
      +      },
      +      "orderBy": {
      +        "anyOf": [
      +          {
      +            "enum": [
      +              "value_usd",
      +              "balance_24h_percent_change",
      +              "holders_count"
      +            ],
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Sort field. Pass an exact value above or None for default ('value_usd')."
      +      },
      +      "orderByDirection": {
      +        "default": "DESC",
      +        "description": "Sort direction: 'ASC' or 'DESC' (case-insensitive).",
      +        "enum": [
      +          "ASC",
      +          "DESC",
      +          "asc",
      +          "desc"
      +        ],
      +        "type": "string"
      +      },
      +      "page": {
      +        "default": 1,
      +        "type": "integer"
      +      }
      +    },
      +    "type": "object"
      +  }
      +]
  5. Changed3 schema fields changed
    • removedInput schema / $defs
      Removed value: -{
      -  "SMLabel": {
      -    "enum": [
      -      "30D Smart Trader",
      -      "90D Smart Trader",
      -      "180D Smart Trader",
      -      "All Time Smart Trader",
      -      "Fund",
      -      "Smart HL Perps Trader",
      -      "Any Smart Money"
      -    ],
      -    "type": "string"
      -  },
      -  "SmartMoneyHoldingsRequest": {
      -    "description": "Request for smart money token holdings (v1 API) - flattened.",
      -    "properties": {
      -      "chains": {
      -        "description": "Optional list of chains to include. If omitted, defaults to ['all'] (all supported chains). Use 'all' to query all supported chains. Supported chains: arbitrum, avalanche, base, bnb, ethereum, hyperevm, hyperliquid, iotaevm, linea, mantle, monad, optimism, plasma, polygon, ronin, scroll, sei, solana, sonic, unichain, zksync, all",
      -        "items": {
      -          "type": "string"
      -        },
      -        "type": "array"
      -      },
      -      "includeNativeTokens": {
      -        "default": true,
      -        "description": "Whether to include native tokens (ETH, SOL, etc.) in results",
      -        "type": "boolean"
      -      },
      -      "includeSmartMoneyLabels": {
      -        "anyOf": [
      -          {
      -            "items": {
      -              "$ref": "#/$defs/SMLabel"
      -            },
      -            "type": "array"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ],
      -        "default": null,
      -        "description": "Smart money category filters to include"
      -      },
      -      "includeStablecoin": {
      -        "default": true,
      -        "description": "Whether to include stablecoins in results",
      -        "type": "boolean"
      -      },
      -      "minHolders": {
      -        "default": 0,
      -        "description": "Minimum number of smart money holders a token must have to be included (default: 0, no filter)",
      -        "type": "integer"
      -      },
      -      "orderBy": {
      -        "anyOf": [
      -          {
      -            "type": "string"
      -          },
      -          {
      -            "type": "null"
      -          }
      -        ],
      -        "default": null,
      -        "description": "Field to sort by (e.g. 'value_usd', 'holders_count', 'balance_24h_percent_change')"
      -      },
      -      "orderByDirection": {
      -        "default": "DESC",
      -        "description": "Sort direction: 'ASC' or 'DESC'",
      -        "type": "string"
      -      },
      -      "page": {
      -        "default": 1,
      -        "type": "integer"
      -      }
      -    },
      -    "type": "object"
      -  }
      -}
    • addedInput schema / additionalProperties
      Added value: +false
    • changedInput schema / properties / request / anyOf
      Previous value: -[
      -  {
      -    "additionalProperties": true,
      -    "type": "object"
      -  },
      -  {
      -    "$ref": "#/$defs/SmartMoneyHoldingsRequest"
      -  }
      -]New value: +[
      +  {
      +    "additionalProperties": true,
      +    "type": "object"
      +  },
      +  {
      +    "description": "Request for smart money token holdings (v1 API) - flattened.",
      +    "properties": {
      +      "chains": {
      +        "description": "Optional list of chains to include. If omitted, defaults to ['all'] (all supported chains). Use 'all' to query all supported chains. Supported chains: arbitrum, avalanche, base, bnb, ethereum, hyperevm, hyperliquid, iotaevm, linea, mantle, monad, optimism, plasma, polygon, ronin, scroll, sei, solana, sonic, unichain, zksync, all",
      +        "items": {
      +          "type": "string"
      +        },
      +        "type": "array"
      +      },
      +      "includeNativeTokens": {
      +        "default": true,
      +        "description": "Whether to include native tokens (ETH, SOL, etc.) in results",
      +        "type": "boolean"
      +      },
      +      "includeSmartMoneyLabels": {
      +        "anyOf": [
      +          {
      +            "items": {
      +              "enum": [
      +                "30D Smart Trader",
      +                "90D Smart Trader",
      +                "180D Smart Trader",
      +                "All Time Smart Trader",
      +                "Fund",
      +                "Smart HL Perps Trader",
      +                "Any Smart Money"
      +              ],
      +              "type": "string"
      +            },
      +            "type": "array"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Smart money category filters to include"
      +      },
      +      "includeStablecoin": {
      +        "default": true,
      +        "description": "Whether to include stablecoins in results",
      +        "type": "boolean"
      +      },
      +      "minHolders": {
      +        "default": 0,
      +        "description": "Minimum number of smart money holders a token must have to be included (default: 0, no filter)",
      +        "type": "integer"
      +      },
      +      "orderBy": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Field to sort by (e.g. 'value_usd', 'holders_count', 'balance_24h_percent_change')"
      +      },
      +      "orderByDirection": {
      +        "default": "DESC",
      +        "description": "Sort direction: 'ASC' or 'DESC'",
      +        "type": "string"
      +      },
      +      "page": {
      +        "default": 1,
      +        "type": "integer"
      +      }
      +    },
      +    "type": "object"
      +  }
      +]
  6. Changed3 schema fields changed
    • addedInput schema / $defs / SmartMoneyHoldingsRequest / properties / minHolders
      Added value: +{
      +  "default": 0,
      +  "description": "Minimum number of smart money holders a token must have to be included (default: 0, no filter)",
      +  "type": "integer"
      +}
    • addedInput schema / $defs / SmartMoneyHoldingsRequest / properties / orderBy
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Field to sort by (e.g. 'value_usd', 'holders_count', 'balance_24h_percent_change')"
      +}
    • addedInput schema / $defs / SmartMoneyHoldingsRequest / properties / orderByDirection
      Added value: +{
      +  "default": "DESC",
      +  "description": "Sort direction: 'ASC' or 'DESC'",
      +  "type": "string"
      +}
  7. Changed1 schema field changed
    • changedInput schema / $defs / SmartMoneyHoldingsRequest / properties / chains / description
      Previous value: -"List of chains to include. Defaults to all supported chains. Supported chains: arbitrum, avalanche, base, bnb, ethereum, hyperevm, hyperliquid, iotaevm, linea, mantle, monad, optimism, plasma, polygon, ronin, scroll, sei, solana, sonic, unichain, zksync, all"New value: +"Optional list of chains to include. If omitted, defaults to ['all'] (all supported chains). Use 'all' to query all supported chains. Supported chains: arbitrum, avalanche, base, bnb, ethereum, hyperevm, hyperliquid, iotaevm, linea, mantle, monad, optimism, plasma, polygon, ronin, scroll, sei, solana, sonic, unichain, zksync, all"
  8. First observed

TDQS

A3.9/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With annotations already declaring readOnlyHint=true and destructiveHint=false, the description adds meaningful behavioral context: aggregated rather than per-wallet data, category exclusions, 24h change, per-chain segmentation, and the 'all' default. It does not mention pagination or response size, but the output schema covers return shape.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two tight sentences: the first states the action, aggregation level, exclusions, chain behavior, and 24h change; the second points to filtering. No filler, repetition, or unnecessary detail.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers the essential decisions: aggregation level, exclusions, chain selection, and time-window change. Pagination and sorting are left to the schema, which is acceptable given the output schema exists; a brief pointer to the available filters would make it slightly more self-contained.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The prose only says 'Use filters to narrow down the results' and mentions chain selection; it does not explain page, orderBy, minHolders, includeStablecoin, includeNativeTokens, or includeSmartMoneyLabels. Although the nested schema has some descriptions, the reported schema description coverage is 0%, and the tool description itself does not compensate for parameter-level meaning.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb and resource: 'Get aggregated ... smart trader and fund ... token balances and 24h change per chain.' It clearly distinguishes this tool from per-wallet views and explicitly excludes whales, large holders, and influencers, making its scope unambiguous relative to sibling tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives useful context: aggregate smart-money balances by chain, default to all chains or specify chains, and use filters to narrow results. However, it does not explicitly say when to prefer this over sibling tools like smart_traders_and_funds_historical_token_balances or smart_traders_and_funds_netflow, and offers no when-not-to-use guidance beyond 'not per wallet.'

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources