search_datasets
Pack: huggingface · Endpoint: https://gateway.pipeworx.io/huggingface/mcp
Search Hugging Face Hub datasets with filters for author, language, and task_categories; sort by downloads, likes, or lastModified; returns dataset id, downloads, likes, and tags.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
search | string | no | |
author | string | no | |
language | string | no | |
task_categories | string | no | Comma-separated task categories |
sort | string | no | |
direction | string | no | |
limit | number | no | |
full | boolean | no |
Example call
Arguments
{
"search": "imagenet",
"limit": 20
}
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":"search_datasets","arguments":{"search":"imagenet","limit":20}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('search_datasets', {
"search": "imagenet",
"limit": 20
});
More examples
{
"author": "wikipedia",
"language": "en",
"task_categories": "text-classification",
"sort": "likes",
"limit": 15
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "List of datasets matching search criteria"
}
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.