time vs ref-tools-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
time by modelcontextprotocol | ref-tools-mcp by ref-tools | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1,104 |
| 30天用量 | — | — |
| 综合分 | 77 | 54 |
| 官方 | ✓ | — |
| 分类 | 效率工具开发者工具沟通协作 | 开发者工具AI / LLM 工具搜索 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
ref-tools-mcp · 概述
Ref MCP 提供高效的 API 文档搜索工具,减少上下文损耗并降低成本。
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
ref-tools-mcp · 使用场景
- AI 编码代理搜索 API 文档而不压垮上下文窗口
- 开发团队为多个服务维护最新参考文档
- 通过最小化获取文档时的令牌使用来降低成本
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"]
}
}
}ref-tools-mcp · 安装
安装选项
流式 HTTP(推荐)
在 Cursor 配置中添加:
"Ref": {
"type": "http",
"url": "https://api.ref.tools/mcp?apiKey=YOUR_API_KEY"
}stdio(传统)
在 Cursor 配置中添加:
"Ref": {
"command": "npx",
"args": ["ref-tools-mcp@latest"],
"env": {
"REF_API_KEY": <注册以获取 API 密钥>
}
}Claude Desktop
在 claude_desktop_config.json 中添加:
{
"mcpServers": {
"ref-tools": {
"command": "npx",
"args": ["ref-tools-mcp@latest"]
}
}
}