changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "ChainInfo": {
+ "description": "Represents a blockchain with its essential identifiers.",
+ "properties": {
+ "chain_id": {
+ "description": "The unique identifier for the chain.",
+ "title": "Chain Id",
+ "type": "string"
+ },
+ "ecosystem": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "The ecosystem the chain belongs to, if applicable (e.g., 'Ethereum').",
+ "title": "Ecosystem"
+ },
+ "is_testnet": {
+ "description": "Indicates if the chain is a testnet.",
+ "title": "Is Testnet",
+ "type": "boolean"
+ },
+ "name": {
+ "description": "The common name of the blockchain (e.g., 'Ethereum').",
+ "title": "Name",
+ "type": "string"
+ },
+ "native_currency": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "The native currency symbol of the chain (e.g., 'ETH').",
+ "title": "Native Currency"
+ },
+ "settlement_layer_chain_id": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "The L1 chain ID where this rollup settles, if applicable.",
+ "title": "Settlement Layer Chain Id"
+ }
+ },
+ "required": [
+ "name",
+ "chain_id",
+ "is_testnet",
+ "native_currency",
+ "ecosystem"
+ ],
+ "title": "ChainInfo",
+ "type": "object"
+ },
+ "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"
+ }
+ },
+ "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/ChainInfo"
+ },
+ "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[ChainInfo]]",
+ "type": "object"
+}