Skip to main content
Glama

AI Research MCP Server

by nanyang12138
EXAMPLES.md7.58 kB
# 使用示例 本文档提供了 AI Research MCP Server 的详细使用示例。 ## 基础搜索 ### 搜索最新的 LLM 论文 **在 Claude Desktop 中提问:** ``` 帮我找最近一周关于大语言模型的论文 ``` **服务器调用:** ```json { "tool": "search_latest_papers", "arguments": { "keywords": ["large language model", "LLM"], "days": 7, "sources": ["arxiv", "huggingface"], "max_results": 20 } } ``` ### 搜索多模态模型论文 **提问:** ``` 找一些最近关于 CLIP 和视觉-语言模型的研究 ``` **服务器调用:** ```json { "tool": "search_latest_papers", "arguments": { "keywords": ["CLIP", "vision language model", "multimodal"], "days": 14, "sources": ["arxiv", "papers_with_code"] } } ``` ## GitHub 仓库搜索 ### 查找 LLM 相关仓库 **提问:** ``` 有哪些新的高 star LLM GitHub 项目? ``` **服务器调用:** ```json { "tool": "search_github_repos", "arguments": { "topics": ["llm", "transformer"], "min_stars": 100, "days": 30 } } ``` ### 搜索机器人学习项目 **提问:** ``` 找一些关于机器人学习和具身智能的 GitHub 项目 ``` **服务器调用:** ```json { "tool": "search_github_repos", "arguments": { "keywords": ["robot learning", "embodied AI"], "topics": ["robotics", "reinforcement-learning"], "min_stars": 50, "days": 60 } } ``` ## 按研究领域搜索 ### LLM 领域 **提问:** ``` 帮我整理一下 LLM 领域最近的研究和项目 ``` **服务器调用:** ```json { "tool": "search_by_area", "arguments": { "area": "llm", "days": 7, "include_papers": true, "include_repos": true } } ``` ### 生物信息学 **提问:** ``` AI 在蛋白质折叠和药物发现方面有什么新进展? ``` **服务器调用:** ```json { "tool": "search_by_area", "arguments": { "area": "bioinfo", "days": 14 } } ``` ### 强化学习 **提问:** ``` 强化学习最近有哪些突破? ``` **服务器调用:** ```json { "tool": "search_by_area", "arguments": { "area": "rl", "days": 7 } } ``` ## 获取精选内容 ### 今日精选论文 **提问:** ``` 今天 Hugging Face 上有哪些精选论文? ``` **服务器调用:** ```json { "tool": "get_daily_papers", "arguments": { "days": 1 } } ``` ### 本周精选论文 **提问:** ``` 这周有哪些热门论文? ``` **服务器调用:** ```json { "tool": "get_daily_papers", "arguments": { "days": 7 } } ``` ### Trending 仓库 **提问:** ``` GitHub 上本周 trending 的 AI 项目有哪些? ``` **服务器调用:** ```json { "tool": "get_trending_repos", "arguments": { "period": "weekly", "max_results": 25 } } ``` ## 模型搜索 ### 热门 LLM 模型 **提问:** ``` Hugging Face 上有哪些热门的文本生成模型? ``` **服务器调用:** ```json { "tool": "get_trending_models", "arguments": { "task": "text-generation", "sort": "downloads", "limit": 30 } } ``` ### 最新发布的模型 **提问:** ``` 最近发布了哪些新模型? ``` **服务器调用:** ```json { "tool": "get_trending_models", "arguments": { "sort": "created", "limit": 20 } } ``` ### 图像分类模型 **提问:** ``` 找一些流行的图像分类模型 ``` **服务器调用:** ```json { "tool": "get_trending_models", "arguments": { "task": "image-classification", "sort": "downloads" } } ``` ## 生成汇总报告 ### 每日汇总 **提问:** ``` 生成今天的 AI 研究汇总 ``` **服务器调用:** ```json { "tool": "generate_daily_summary", "arguments": { "include_papers": true, "include_repos": true, "include_models": true } } ``` ### 每周汇总 **提问:** ``` 给我一份本周的 AI 研究周报 ``` **服务器调用:** ```json { "tool": "generate_weekly_summary", "arguments": { "include_papers": true, "include_repos": true, "include_models": true } } ``` ### 仅论文汇总 **提问:** ``` 生成今天的论文汇总,不包括仓库和模型 ``` **服务器调用:** ```json { "tool": "generate_daily_summary", "arguments": { "include_papers": true, "include_repos": false, "include_models": false } } ``` ## 高级查询示例 ### 组合多个条件 **提问:** ``` 帮我找最近两周关于 Transformer 优化和模型压缩的论文,最好有代码实现 ``` **服务器调用:** ```json { "tool": "search_latest_papers", "arguments": { "keywords": ["transformer", "optimization", "model compression", "quantization"], "days": 14, "sources": ["papers_with_code", "arxiv"], "max_results": 30 } } ``` ### 特定语言的仓库 **提问:** ``` 找一些用 Python 实现的强化学习项目 ``` **服务器调用:** ```json { "tool": "search_github_repos", "arguments": { "topics": ["reinforcement-learning"], "language": "Python", "min_stars": 100, "days": 90 } } ``` ### 特定会议的论文 **提问:** ``` 最近有哪些 NeurIPS 或 ICML 的论文发布了代码? ``` **服务器调用:** ```json { "tool": "search_latest_papers", "arguments": { "keywords": ["NeurIPS", "ICML"], "sources": ["papers_with_code"], "days": 30 } } ``` ## 使用资源 ### 访问每日汇总资源 **提问:** ``` 给我看看今天的研究汇总 ``` Claude 会自动访问 `ai-research://daily-summary` 资源。 ### 访问每周汇总资源 **提问:** ``` 本周的研究进展如何? ``` Claude 会自动访问 `ai-research://weekly-summary` 资源。 ## 实用技巧 ### 1. 使用自然语言 你不需要记住工具名称或参数,只需要用自然语言描述你想要什么: - ✅ "帮我找最近关于 LLM 的研究" - ✅ "有哪些新的机器人学习项目?" - ✅ "生成今天的 AI 研究汇总" ### 2. 组合多个查询 你可以一次性提出多个要求: ``` 帮我找一下: 1. 最近一周关于多模态模型的论文 2. GitHub 上高 star 的 LLM 项目 3. Hugging Face 上的热门文本生成模型 ``` ### 3. 指定时间范围 - "最近 3 天" → days: 3 - "这周" → days: 7 - "本月" → days: 30 ### 4. 过滤结果 - "高 star" → min_stars: 1000+ - "新发布" → sort: created - "最热门" → sort: downloads/stars ### 5. 缓存机制 重复的查询会使用缓存,响应更快。如果需要最新数据,可以明确说明: ``` 重新搜索最新的 LLM 论文(忽略缓存) ``` ## 支持的研究领域关键词 使用 `search_by_area` 时可用的领域: - `llm` - 大语言模型 - `vision` - 计算机视觉/生成式 AI - `robotics` - 机器人学 - `bioinfo` - 生物信息学 - `science` - AI for Science - `rl` - 强化学习 - `graph` - 图神经网络 - `efficient` - 高效 AI - `safety` - AI 安全 - `emerging` - 新兴方向 ## 常见使用场景 ### 场景 1: 日常研究追踪 每天早上: ``` 生成今天的 AI 研究汇总 ``` ### 场景 2: 开始新项目 ``` 帮我找关于 [你的主题] 的最新研究和代码实现 ``` ### 场景 3: 文献调研 ``` 搜索最近 3 个月关于 [具体主题] 的论文,最好有 GitHub 代码 ``` ### 场景 4: 跟踪热点 ``` 最近 AI 领域有哪些热门话题?给我一份本周汇总 ``` ### 场景 5: 寻找工具 ``` 有哪些流行的 [具体任务] 开源项目? ``` --- 更多信息请参考 [README.md](README.md) 和 [QUICKSTART.md](QUICKSTART.md)。

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/nanyang12138/AI-Research-MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server