dataset-search-mcp

dataset-search-mcp

Unified MCP server for discovering open datasets across Hugging Face, Zenodo, and Kaggle, with ranked search results and one-click Colab starter code generation.

Category
Visit Server

README

dataset-search-mcp

Unified Model Context Protocol (MCP) server for open-dataset discovery. Search across Hugging Face, Zenodo, and optionally Kaggle, then generate ready-to-run Colab starter code for any result.


Live demo

You can try the search & ranking logic in a simple UI here: Open Dataset Finder (Hugging Face Spaces)


Features

  • Multi-source search: Hugging Face / Zenodo / Kaggle (when credentials are available)
  • Sensible ranking (BM25 + fuzzy + light recency weighting)
  • Kaggle API with automatic CLI fallback
  • Safe by default: the server returns metadata only (no server-side downloads)
  • One-click starter snippets for quick experimentation

Repository layout

dataset-search-mcp/
├─ src/
│  └─ dataset_search_mcp/
│     ├─ __init__.py
│     └─ server.py          # MCP server + tools
├─ examples/
│  ├─ claude-desktop.settings.json
│  └─ cursor.settings.json
├─ .github/workflows/
│  ├─ ci.yml
│  └─ release.yml
├─ Dockerfile
├─ pyproject.toml
├─ .dockerignore
├─ .gitignore
├─ LICENSE
└─ README.md

Install (local)

Requires Python 3.9+

pip install -e .
dataset-search-mcp

This starts the MCP server over stdio (awaiting an MCP client).


Docker

Build

docker build -t dataset-search-mcp:local .

Quick smoke test (import only)

docker run --rm --entrypoint python dataset-search-mcp:local -c \
"import importlib; m=importlib.import_module('dataset_search_mcp.server'); print('OK', hasattr(m,'main'))"
# Expected: OK True

Manual run (server waits for a client)

docker run -it --rm dataset-search-mcp:local

Using with Claude Desktop

Add the server to Settings → MCP Servers.

Simplest (Docker):

{
  "mcpServers": {
    "dataset-search-mcp": {
      "command": "docker",
      "args": ["run","-i","--rm","dataset-search-mcp:local"]
    }
  }
}

With Kaggle credentials:

{
  "mcpServers": {
    "dataset-search-mcp": {
      "command": "docker",
      "args": [
        "run","-i","--rm",
        "-e","KAGGLE_USERNAME=your_username",
        "-e","KAGGLE_KEY=your_api_key",
        "dataset-search-mcp:local"
      ]
    }
  }
}

Restart Claude Desktop and open a new chat.


Tools (overview)

search_datasets

Search public datasets across the supported sources.

Args (common):

  • query (string, required)
  • sources (optional): e.g. ["huggingface","zenodo"] Note: the server is tolerant—string forms like "huggingface, zenodo" also work.
  • limit (optional, default 40): per-source cap before ranking
  • format_filter (optional): e.g. "csv" or "json"

Example call (as JSON):

{"query":"korean weather","sources":["huggingface","zenodo"],"limit":10}

Returns: a ranked array of items, each with: source, id, title, description, updated, url, download_url, formats, score.


starter_code

Generate a small Python snippet to quickly try the selected dataset in Colab.

Args (typical):

  • source (e.g., "huggingface", "zenodo", "kaggle")
  • id
  • url (optional)
  • download_url (optional; if present and CSV, the snippet loads it directly)
  • formats (optional; used to choose the best snippet)

Kaggle credentials (brief)

Provide either environment variables:

export KAGGLE_USERNAME=your_username
export KAGGLE_KEY=your_api_key

or a file:

~/.kaggle/kaggle.json
{"username":"your_username","key":"your_api_key"}

Some Kaggle datasets require accepting terms on the website first.


How it works (short)

  • Hugging Face: list_datasets() plus optional dataset_info() for card details
  • Zenodo: REST search via GET /api/records
  • Kaggle: API first; fallback to CLI datasets list --csv
  • Ranking: BM25 + fuzzy matching + light recency factor; duplicates merged on (source,id)

Quick examples (in chat)

  • Search HF + Zenodo:
{"query":"korean weather","sources":["huggingface","zenodo"],"limit":10}
  • CSV-only on Zenodo:
{"query":"traffic accident Korea","sources":["zenodo"],"limit":20,"format_filter":"csv"}
  • Then request starter code using one of the returned items’ fields (source, id, url, download_url, formats).

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured