Dataset Viewer MCP Server

get_statistics

Get statistics about a Hugging Face dataset

Input Schema

NameRequiredDescriptionDefault
auth_tokenNoHugging Face auth token for private/gated datasets
configYesDataset configuration/subset name. Use get_info to list available configs
datasetYesHugging Face dataset identifier in the format owner/dataset
splitYesDataset split name. Splits partition the data for training/evaluation

Input Schema (JSON Schema)

{ "properties": { "auth_token": { "description": "Hugging Face auth token for private/gated datasets", "optional": true, "type": "string" }, "config": { "description": "Dataset configuration/subset name. Use get_info to list available configs", "examples": [ "default", "en", "es" ], "type": "string" }, "dataset": { "description": "Hugging Face dataset identifier in the format owner/dataset", "examples": [ "ylecun/mnist", "stanfordnlp/imdb" ], "pattern": "^[^/]+/[^/]+$", "type": "string" }, "split": { "description": "Dataset split name. Splits partition the data for training/evaluation", "examples": [ "train", "validation", "test" ], "type": "string" } }, "required": [ "dataset", "config", "split" ], "type": "object" }