time vs scholar-search-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
time by modelcontextprotocol | scholar-search-mcp by Silung | |
|---|---|---|
| Stars | ★ 85,748 | ★ 180 |
| 30天用量 | — | — |
| 综合分 | 77 | 50 |
| 官方 | ✓ | — |
| 分类 | 效率工具开发者工具沟通协作 | AI / LLM 工具开发者工具知识库 / RAG |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 本月 |
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
scholar-search-mcp · 概述
学术论文搜索MCP服务器,集成Semantic Scholar和arXiv,提供实用研究工具。
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
scholar-search-mcp · 使用场景
- 帮助研究人员通过全面的文献搜索撰写综述论文
- 使AI助手能够检索学术论文元数据和引文
- 通过提供对多个学术数据库的统一访问来支持学术工作流
time · 安装
安装选项
**使用 uv(推荐):**
uvx mcp-server-time**使用 PIP:**
pip install mcp-server-time
python -m mcp_server_time**为 Claude Desktop 配置:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}scholar-search-mcp · 安装
安装
pip install scholar-search-mcp快速设置(Claude Desktop / Cursor)
将以下配置添加到您的MCP设置中:
{
"mcpServers": {
"scholar-search": {
"command": "python",
"args": ["-m", "scholar_search_mcp"],
"env": {
"SCHOLAR_SEARCH_ENABLE_SEMANTIC_SCHOLAR": "true",
"SCHOLAR_SEARCH_ENABLE_ARXIV": "true"
}
}
}
}如需更高的速率限制,添加您的Semantic Scholar API密钥:
{
"mcpServers": {
"scholar-search": {
"command": "python",
"args": ["-m", "scholar_search_mcp"],
"env": {
"SCHOLAR_SEARCH_ENABLE_SEMANTIC_SCHOLAR": "true",
"SCHOLAR_SEARCH_ENABLE_ARXIV": "true",
"SEMANTIC_SCHOLAR_API_KEY": "your-key"
}
}
}
}