Risad-Raihan/huggingface_mcp_server
If you are the rightful owner of huggingface_mcp_server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
A Model Context Protocol (MCP) server for seamless Hugging Face integration with Cursor and other MCP-compatible tools.
search_models
Search models with filters
get_model_info
Get detailed model information
check_model_compatibility
Check system compatibility
get_task_categories
List available model tasks
Hugging Face MCP Server
A Model Context Protocol (MCP) server for seamless Hugging Face integration with Cursor and other MCP-compatible tools.
🎉 Successfully Installed!
Your Hugging Face MCP server is now installed and ready to use on your E: drive.
📁 Installation Location
E:\huggingface-mcp-server\
✅ What's Working
- ✅ MCP Server compiled and built successfully
- ✅ Basic tools available (search_models, get_model_info, check_model_compatibility, get_task_categories)
- ✅ Configuration with your Hugging Face token
- ✅ System specs configured for 16GB RAM and RTX 2050
🔧 Cursor Integration
To integrate with Cursor, add this to your Cursor settings:
Method 1: Through Cursor Settings UI
- Open Cursor (
Ctrl+,
for settings) - Search for "MCP"
- Add a new server with these details:
- Name:
huggingface
- Command:
node
- Arguments:
["E:\\huggingface-mcp-server\\dist\\index.js"]
- Working Directory:
E:\huggingface-mcp-server
- Name:
Method 2: Edit settings.json
Add this to your Cursor settings.json:
{
"mcp": {
"servers": {
"huggingface": {
"command": "node",
"args": ["E:\\huggingface-mcp-server\\dist\\index.js"],
"cwd": "E:\\huggingface-mcp-server"
}
}
}
}
🚀 Quick Test
After adding to Cursor, restart Cursor and try asking:
- "What Hugging Face tools are available?"
- "Search for text generation models"
- "Check if microsoft/DialoGPT-small is compatible with my system"
- "Show me the available task categories"
📋 Available Tools
- search_models - Search models with filters
- get_model_info - Get detailed model information
- check_model_compatibility - Check system compatibility
- get_task_categories - List available model tasks
⚙️ Configuration
Your configuration is stored in:
- Environment variables:
.env
file - Your Hugging Face token is already configured
🔧 Development Commands
# Navigate to your project
cd E:\huggingface-mcp-server
# Rebuild after changes
npm run build
# Test the server directly
npm run dev
# Install new dependencies
npm install
📝 Your System Specs
- RAM: 16GB
- GPU: RTX 2050
- Storage: E: drive (saving C: drive space ✅)
- Token: Configured and ready
🎯 Next Steps
- Add to Cursor using the configuration above
- Restart Cursor completely
- Test the integration with the example queries
- Enjoy browsing and managing Hugging Face models directly from Cursor!
🔍 Troubleshooting
If you encounter issues:
- Server not responding: Check the path
E:\huggingface-mcp-server\dist\index.js
exists - Cursor can't find server: Verify Node.js is in your PATH:
node --version
- Need to rebuild: Run
npm run build
in the project directory - Check logs: Look at Cursor's developer console (F12)
🎉 Congratulations! Your Hugging Face MCP server is ready to use. You can now browse, search, and manage Hugging Face models directly from Cursor!