get-dataset-info
Retrieve detailed metadata about a specific dataset using its ID, enabling access to essential information for analysis or integration via the Hugging Face MCP Server.
Instructions
Get detailed information about a specific dataset
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dataset_id | Yes | The ID of the dataset (e.g., 'squad') |
Input Schema (JSON Schema)
{
"properties": {
"dataset_id": {
"description": "The ID of the dataset (e.g., 'squad')",
"type": "string"
}
},
"required": [
"dataset_id"
],
"type": "object"
}