PromptShop

Hf Mcp

The Hugging Face MCP Server skill allows AI assistants to connect to the Hugging Face Hub.

Install

npx promptshop add hf-mcp

Details

What This Skill Does

The Hugging Face MCP Server skill allows AI assistants to connect to the Hugging Face Hub. It enables users to find models and datasets, compare models, discover AI tools, generate images, research topics, and learn how to use libraries. This skill is useful for anyone working with AI models and datasets on the Hugging Face Hub.

When to Use

  • Find the best model for a specific task.
  • Compare models from different providers.
  • Find datasets for training models.
  • Discover AI tools available on the Hub.
  • Generate images using available models.
  • Research a specific topic using papers and models.

Key Features

  • Search for models based on task, query, and sort criteria.
  • Retrieve detailed information about models and datasets.
  • Discover and interact with AI tools (MCP Spaces).
  • Search for papers related to specific topics.
  • Access documentation for using libraries.
  • Connect AI assistants to the Hugging Face Hub.

Manual Installation

Use Cases & Examples

Find the Best Model for a Task

User: "Find the best model for code generation"

model_search(task="text-generation", query="code", sort="trendingScore", limit=10) hub_repo_details(repo_ids=["top-result-id"], include_readme=true)

Compare Models from Different Providers

User: "Compare Llama vs Qwen for text generation"

model_search(author="meta-llama", task="text-generation", sort="downloads", limit=5) model_search(author="Qwen", task="text-generation", sort="downloads", limit=5) hub_repo_details(repo_ids=["meta-llama/Llama-3.2-1B", "Qwen/Qwen3-8B"], include_readme=true)

Find Training Datasets

User: "Find datasets for sentiment analysis in English"

dataset_search(query="sentiment", tags=["language:en", "task_categories:text-classification"], sort="downloads") hub_repo_details(repo_ids=["top-dataset-id"], repo_type="dataset", include_readme=true)

Discover AI Tools (MCP Spaces)

User: "Find a tool that can remove image backgrounds"

space_search(query="background removal", mcp=true) dynamic_space(operation="view_parameters", space_name="result-space-id") dynamic_space(operation="invoke", space_name="result-space-id", parameters="{...}")

Generate Images

User: "Create an image of a robot reading a book"

dynamic_space(operation="discover") # See available tasks gr1_flux1_schnell_infer(prompt="a robot sitting in a library reading a book, warm lighting, detailed")

Research a Topic

User: "What are the latest papers on RLHF?"

paper_search(query="reinforcement learning from human feedback", results_limit=10) hub_repo_details(repo_ids=["paper-linked-model"], include_readme=true) # If paper links to models

Learn How to Use a Library

User: "How do I fine-tune with LoRA using PEFT?"

hf_doc_search(query="LoRA fine-tuning", product="peft") hf_doc_fetch(doc_url="https://huggingface.co/docs/peft/...")

Run a Quick GPU Job

User: "Run this Python script on a GPU"

hf_jobs(operation="uv", args={ "script": "# /// script\n# dependencies = ["torch"]\n# ///\nimport torch\nprint(torch.cuda.is_available())", "flavor": "t4-small" })

Train a Model on Cloud GPU

User: "Run my training script on an A10G"

hf_jobs(operation="run", args={ "image": "pytorch/pytorch:2.5.1-cuda12.4-cudnn9-runtime", "command": ["/bin/sh", "-lc", "pip install transformers trl && python train.py"], "flavor": "a10g-small", "secrets": {"HF_TOKEN": "$HF_TOKEN"} })

Check Job Status

User: "What's happening with my training job?"

hf_jobs(operation="ps") hf_jobs(operation="logs", args={"job_id": "job-xxxxx"})

Explore What's Trending

User: "What models are trending right now?"

model_search(sort="trendingScore", limit=20)

Get Model Card Details

User: "Tell me about Mistral-7B"

hub_repo_details(repo_ids=["mistralai/Mistral-7B-v0.1"], include_readme=true)

Find Quantized Models

User: "Find GGUF versions of Llama 3"

model_search(query="Llama 3 GGUF", sort="downloads", limit=10)

Use a Gradio Space as a Tool

User: "Transcribe this audio file"

space_search(query="speech to text transcription", mcp=true) dynamic_space(operation="view_parameters", space_name="openai/whisper") dynamic_space(operation="invoke", space_name="openai/whisper", parameters="{"audio": "..."}")

Schedule Recurring Jobs

User: "Run this data sync every day at midnight"

hf_jobs(operation="scheduled uv", args={ "script": "...", "cron": "0 0 *", "flavor": "cpu-basic" })

Tool Selection Guide

GoalTool
Find modelsmodel_search
Find datasetsdataset_search
Find Spaces/appsspace_search
Find paperspaper_search
Get repo README/detailshub_repo_details
Learn library usagehf_doc_search → hf_doc_fetch
Run code on GPU/CPUhf_jobs
Use Gradio apps as toolsdynamic_space
Generate imagesgr1_flux1_schnell_infer or dynamic_space
Check authhf_whoami

Tips

Use sort="trendingScore" to find what's popular now Use sort="downloads" to find battle-tested options Set mcp=true in space_search to find Spaces usable as tools Use include_readme=true in hub_repo_details for full model/dataset documentation For jobs accessing private repos, always include secrets: {"HF_TOKEN": "$HF_TOKEN"} Use dynamic_space(operation="discover") to see all available Space-based tasksHugging Face MCP Server

Connect AI assistants to the Hugging Face Hub. Setup: https://huggingface.co/settings/mcp

Use Cases & Examples

Find the Best Model for a Task

User: "Find the best model for code generation"

model_search(task="text-generation", query="code", sort="trendingScore", limit=10) hub_repo_details(repo_ids=["top-result-id"], include_readme=true)

Compare Models from Different Providers

User: "Compare Llama vs Qwen for text generation"

model_search(author="meta-llama", task="text-generation", sort="downloads", limit=5) model_search(author="Qwen", task="text-generation", sort="downloads", limit=5) hub_repo_details(repo_ids=["meta-llama/Llama-3.2-1B", "Qwen/Qwen3-8B"], include_readme=true)

Find Training Datasets

User: "Find datasets for sentiment analysis in English"

dataset_search(query="sentiment", tags=["language:en", "task_categories:text-classification"], sort="downloads") hub_repo_details(repo_ids=["top-dataset-id"], repo_type="dataset", include_readme=true)

Discover AI Tools (MCP Spaces)

User: "Find a tool that can remove image backgrounds"

space_search(query="background removal", mcp=true) dynamic_space(operation="view_parameters", space_name="result-space-id") dynamic_space(operation="invoke", space_name="result-space-id", parameters="{...}")

Generate Images

User: "Create an image of a robot reading a book"

dynamic_space(operation="discover") # See available tasks gr1_flux1_schnell_infer(prompt="a robot sitting in a library reading a book, warm lighting, detailed")

Research a Topic

User: "What are the latest papers on RLHF?"

paper_search(query="reinforcement learning from human feedback", results_limit=10) hub_repo_details(repo_ids=["paper-linked-model"], include_readme=true) # If paper links to models

Learn How to Use a Library

User: "How do I fine-tune with LoRA using PEFT?"

hf_doc_search(query="LoRA fine-tuning", product="peft") hf_doc_fetch(doc_url="https://huggingface.co/docs/peft/...")

Run a Quick GPU Job

User: "Run this Python script on a GPU"

hf_jobs(operation="uv", args={ "script": "# /// script\n# dependencies = ["torch"]\n# ///\nimport torch\nprint(torch.cuda.is_available())", "flavor": "t4-small" })

Train a Model on Cloud GPU

User: "Run my training script on an A10G"

hf_jobs(operation="run", args={ "image": "pytorch/pytorch:2.5.1-cuda12.4-cudnn9-runtime", "command": ["/bin/sh", "-lc", "pip install transformers trl && python train.py"], "flavor": "a10g-sm