get_dataset
Pack: huggingface · Endpoint: https://gateway.pipeworx.io/huggingface/mcp
Detailed Hugging Face dataset metadata by repo_id (e.g. “squad”) and optional revision; returns card data, tags, downloads, task categories, and file list.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
repo_id | string | yes | |
revision | string | no |
Example call
Arguments
{
"repo_id": "wikitext"
}
curl
curl -X POST https://gateway.pipeworx.io/huggingface/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_dataset","arguments":{"repo_id":"wikitext"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_dataset', {
"repo_id": "wikitext"
});
More examples
{
"repo_id": "openwebtext/openwebtext",
"revision": "main"
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "Detailed dataset repository information"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"huggingface": {
"url": "https://gateway.pipeworx.io/huggingface/mcp"
}
}
}
See Getting Started for client-specific install steps.