惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
F
Fortinet All Blogs
Martin Fowler
Martin Fowler
M
MIT News - Artificial intelligence
G
Google Developers Blog
P
Proofpoint News Feed
Recent Announcements
Recent Announcements
MyScale Blog
MyScale Blog
D
DataBreaches.Net
Stack Overflow Blog
Stack Overflow Blog
月光博客
月光博客
爱范儿
爱范儿
罗磊的独立博客
腾讯CDC
Hugging Face - Blog
Hugging Face - Blog
博客园 - 叶小钗
Vercel News
Vercel News
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog
C
Check Point Blog
美团技术团队
宝玉的分享
宝玉的分享
Microsoft Security Blog
Microsoft Security Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

Hugging Face - Blog

Waypoint-1.5: Higher-Fidelity Interactive Worlds for Everyday GPUs ALTK‑Evolve: On‑the‑Job Learning for AI Agents Safetensors is Joining the PyTorch Foundation Holo3: Breaking the Computer Use Frontier Any Custom Frontend with Gradio's Backend A New Framework for Evaluating Voice Agents (EVA) Bringing Robotics AI to Embedded Platforms: Dataset Recording, VLA Fine‑Tuning, and On‑Device Optimizations One-Shot Any Web App with Gradio's gr.HTML CUGA on Hugging Face: Democratizing Configurable AI Agents New in llama.cpp: Model Management Building Deep Research: How we Achieved State of the Art OVHcloud on Hugging Face Inference Providers 🔥 20x Faster TRL Fine-tuning with RapidFire AI Building for an Open Future - our new partnership with Google Cloud Aligning to What? Rethinking Agent Generalization in MiniMax M2 Building a Healthcare Robot from Simulation to Deployment with NVIDIA Isaac Sentence Transformers is joining Hugging Face! Unlock the power of images with AI Sheets Supercharge your OCR Pipelines with Open Models Google Cloud C4 Brings a 70% TCO improvement on GPT OSS with Intel and Hugging Face Get your VLM running in 3 simple steps on Intel CPUs Nemotron-Personas-India: Synthesized Data for Sovereign AI Introducing RTEB: A New Standard for Retrieval Evaluation Accelerating Qwen3-8B Agent on Intel® Core™ Ultra with Depth-Pruned Draft Models VibeGame: Exploring Vibe Coding Games Nemotron-Personas-Japan: ソブリン AI のための合成データセット Swift Transformers Reaches 1.0 – and Looks to the Future Smol2Operator: Post-Training GUI Agents for Computer Use SyGra: The One-Stop Framework for Building Data for LLMs and SLMs Gaia2 and ARE: Empowering the community to study agents
MCP for Research: How to Connect AI to Research Tools
Dylan Ebert · 2025-08-18 · via Hugging Face - Blog

Back to Articles

Dylan Ebert's avatar

Academic research involves frequent research discovery: finding papers, code, related models and datasets. This typically means switching between platforms like arXiv, GitHub, and Hugging Face, manually piecing together connections.

The Model Context Protocol (MCP) is a standard that allows agentic models to communicate with external tools and data sources. For research discovery, this means AI can use research tools through natural language requests, automating platform switching and cross-referencing.

Research Tracker MCP in action

Research Discovery: Three Layers of Abstraction

Much like software development, research discovery can be framed in terms of layers of abstraction.

1. Manual Research

At the lowest level of abstraction, researchers search manually and cross-reference by hand.

# Typical workflow:
1. Find paper on arXiv
2. Search GitHub for implementations
3. Check Hugging Face for models/datasets
4. Cross-reference authors and citations
5. Organize findings manually

This manual approach becomes inefficient when tracking multiple research threads or conducting systematic literature reviews. The repetitive nature of searching across platforms, extracting metadata, and cross-referencing information naturally leads to automation through scripting.

2. Scripted Tools

Python scripts automate research discovery by handling web requests, parsing responses, and organizing results.

# research_tracker.py
def gather_research_info(paper_url):
    paper_data = scrape_arxiv(paper_url)
    github_repos = search_github(paper_data['title'])
    hf_models = search_huggingface(paper_data['authors'])
    return consolidate_results(paper_data, github_repos, hf_models)

# Run for each paper you want to investigate
results = gather_research_info("https://arxiv.org/abs/2103.00020")

The research tracker demonstrates systematic research discovery built from these types of scripts.

While scripts are faster than manual research, they often fail to automatically collect data due to changing APIs, rate limits, or parsing errors. Without human oversight, scripts may miss relevant results or return incomplete information.

3. MCP Integration

MCP makes these same Python tools accessible to AI systems through natural language.

# Example research directive
Find recent transformer architecture papers published in the last 6 months:
- Must have available implementation code
- Focus on papers with pretrained models
- Include performance benchmarks when available

The AI orchestrates multiple tools, fills information gaps, and reasons about results:

# AI workflow:
# 1. Use research tracker tools
# 2. Search for missing information
# 3. Cross-reference with other MCP servers
# 4. Evaluate relevance to research goals

user: "Find all relevant information (code, models, etc.) on this paper: https://huggingface.co/papers/2010.11929"
ai: # Combines multiple tools to gather complete information

This can be viewed as an additional layer of abstraction above scripting, where the "programming language" is natural language. This follows the Software 3.0 Analogy, where the natural language research direction is the software implementation.

This comes with the same caveats as scripting:

  • Faster than manual research, but error-prone without human guidance
  • Quality depends on the implementation
  • Understanding the lower layers (both manual and scripted) leads to better implementations

Setup and Usage

Quick Setup

The easiest way to add the Research Tracker MCP is through Hugging Face MCP Settings:

  1. Visit huggingface.co/settings/mcp
  2. Search for "research-tracker-mcp" in the available tools
  3. Click to add it to your tools
  4. Follow the provided setup instructions for your specific client (Claude Desktop, Cursor, Claude Code, VS Code, etc.)

This workflow leverages the Hugging Face MCP server, which is the standard way to use Hugging Face Spaces as MCP tools. The settings page provides client-specific configuration that's automatically generated and always up-to-date.

Learn More

Get Started:

Build Your Own:

Community:

Ready to automate your research discovery? Try the Research Tracker MCP or build your own research tools with the resources above.