mcp-simple-timeserver vs time
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-simple-timeserver by andybrandt | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 30 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 44 | 77 |
| 官方 | — | ✓ |
| 分类 | 效率工具AI / LLM 工具其它 | 效率工具开发者工具沟通协作 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 3 个月前 | 本月 |
mcp-simple-timeserver · 概述
一个Python MCP服务器,为Claude提供时间查询、节假日信息和时间计算功能。
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
mcp-simple-timeserver · 使用场景
- 为缺乏内置时间功能的AI助手添加时间感知能力
- 计算日期之间的时间差用于日程安排和任务规划
- 检查不同国家的公共假日用于国际业务规划
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
mcp-simple-timeserver · 安装
安装
通过Smithery安装
npx -y @smithery/cli install mcp-simple-timeserver --client claude手动安装
pip install mcp-simple-timeserverClaude桌面应用配置
Mac OS:
"mcpServers": {
"simple-timeserver": {
"command": "python",
"args": ["-m", "mcp_simple_timeserver"]
}
}Windows:
"mcpServers": {
"simple-timeserver": {
"command": "C:\\Users\\YOUR_USERNAME\\AppData\\Local\\Programs\\Python\\Python311\\python.exe",
"args": ["-m", "mcp_simple_timeserver"]
}
}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"]
}
}
}