time vs deep-research-mcp-server
并排对比,帮你在这两个 MCP server 之间做选择。
time by modelcontextprotocol | deep-research-mcp-server by ssdeanx | |
|---|---|---|
| Stars | ★ 85,748 | ★ 70 |
| 30天用量 | — | — |
| 综合分 | 77 | 43 |
| 官方 | ✓ | — |
| 分类 | 效率工具开发者工具沟通协作 | AI / LLM 工具开发者工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 9 个月前 |
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
deep-research-mcp-server · 概述
使用 Google Gemini 2.5 Flash 的深度研究 MCP 服务器,提供基于网络基础的迭代研究能力。
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
deep-research-mcp-server · 使用场景
- 对复杂技术主题进行深度研究并迭代细化
- 生成包含引用和方法论的综合研究报告
- 通过 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"]
}
}
}deep-research-mcp-server · 安装
安装
- 克隆仓库:
git clone https://github.com/ssdeanx/deep-research-mcp-server
cd deep-research-mcp-server- 安装依赖:
npm install- 设置环境变量:
创建 .env.local 文件:
GEMINI_API_KEY="your_gemini_key"
GEMINI_MODEL=gemini-2.5-flash
CONCURRENCY_LIMIT=5- 构建项目:
npm run build- 作为 MCP 服务器运行:
node --env-file .env.local dist/mcp-server.js**Claude Desktop 配置:** 添加到 claude_desktop_config.json:
{
"mcpServers": {
"deep-research": {
"command": "node",
"args": ["--env-file", ".env.local", "dist/mcp-server.js"]
}
}
}