Cryo MCP Server

lookup_dataset

Look up a specific dataset and return detailed information about it Args: name: The name of the dataset to look up sample_start_block: Optional start block for sample data (integer) sample_end_block: Optional end block for sample data (integer) use_latest_sample: If True, use the latest block for sample data sample_blocks_from_latest: Number of blocks before the latest to include in sample Returns: Detailed information about the dataset including schema and available fields

Input Schema

NameRequiredDescriptionDefault
nameYes
sample_blocks_from_latestNo
sample_end_blockNo
sample_start_blockNo
use_latest_sampleNo

Input Schema (JSON Schema)

{ "properties": { "name": { "title": "Name", "type": "string" }, "sample_blocks_from_latest": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "default": null, "title": "Sample Blocks From Latest" }, "sample_end_block": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "default": null, "title": "Sample End Block" }, "sample_start_block": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "default": null, "title": "Sample Start Block" }, "use_latest_sample": { "default": false, "title": "Use Latest Sample", "type": "boolean" } }, "required": [ "name" ], "title": "lookup_datasetArguments", "type": "object" }