changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "NextCallInfo": {
+ "description": "A structured representation of the tool call required to get the next page.",
+ "properties": {
+ "params": {
+ "additionalProperties": true,
+ "description": "A complete dictionary of parameters for the next tool call, including the new cursor.",
+ "title": "Params",
+ "type": "object"
+ },
+ "tool_name": {
+ "description": "The name of the tool to call for the next page.",
+ "title": "Tool Name",
+ "type": "string"
+ }
+ },
+ "required": [
+ "tool_name",
+ "params"
+ ],
+ "title": "NextCallInfo",
+ "type": "object"
+ },
+ "PaginationInfo": {
+ "description": "Contains the structured information needed to retrieve the next page of results.",
+ "properties": {
+ "next_call": {
+ "$ref": "#/$defs/NextCallInfo",
+ "description": "The structured tool call required to fetch the subsequent page."
+ }
+ },
+ "required": [
+ "next_call"
+ ],
+ "title": "PaginationInfo",
+ "type": "object"
+ },
+ "TokenHoldingData": {
+ "description": "Represents a single token holding with its associated metadata.",
+ "properties": {
+ "address": {
+ "description": "The contract address of the token.",
+ "title": "Address",
+ "type": "string"
+ },
+ "balance": {
+ "description": "The token balance for the queried address (unadjusted for decimals).",
+ "title": "Balance",
+ "type": "string"
+ },
+ "circulating_market_cap": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "The circulating market cap, if available.",
+ "title": "Circulating Market Cap"
+ },
+ "decimals": {
+ "description": "The number of decimals the token uses.",
+ "title": "Decimals",
+ "type": "string"
+ },
+ "exchange_rate": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "The current exchange rate, if available.",
+ "title": "Exchange Rate"
+ },
+ "holders_count": {
+ "description": "The number of addresses holding this token.",
+ "title": "Holders Count",
+ "type": "string"
+ },
+ "name": {
+ "description": "The full name of the token (e.g., 'USD Coin').",
+ "title": "Name",
+ "type": "string"
+ },
+ "symbol": {
+ "description": "The symbol of the token (e.g., 'USDC').",
+ "title": "Symbol",
+ "type": "string"
+ },
+ "total_supply": {
+ "description": "The total supply of the token.",
+ "title": "Total Supply",
+ "type": "string"
+ }
+ },
+ "required": [
+ "address",
+ "name",
+ "symbol",
+ "decimals",
+ "total_supply",
+ "circulating_market_cap",
+ "exchange_rate",
+ "holders_count",
+ "balance"
+ ],
+ "title": "TokenHoldingData",
+ "type": "object"
+ }
+ },
+ "properties": {
+ "content_text": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Optional human-readable summary used for MCP content responses.",
+ "title": "Content Text"
+ },
+ "data": {
+ "description": "The main data payload of the tool's response.",
+ "items": {
+ "$ref": "#/$defs/TokenHoldingData"
+ },
+ "title": "Data",
+ "type": "array"
+ },
+ "data_description": {
+ "anyOf": [
+ {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "A list of notes explaining the structure, fields, or conventions of the 'data' payload.",
+ "title": "Data Description"
+ },
+ "instructions": {
+ "anyOf": [
+ {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "A list of suggested follow-up actions or instructions for the LLM to plan its next steps.",
+ "title": "Instructions"
+ },
+ "notes": {
+ "anyOf": [
+ {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "A list of important contextual notes, such as warnings about data truncation or data quality issues.",
+ "title": "Notes"
+ },
+ "pagination": {
+ "anyOf": [
+ {
+ "$ref": "#/$defs/PaginationInfo"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Pagination information, present only if the 'data' is a single page of a larger result set."
+ }
+ },
+ "required": [
+ "data"
+ ],
+ "title": "ToolResponse[list[TokenHoldingData]]",
+ "type": "object"
+}