mcp-agent vs time
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-agent by CeerDecy | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 0 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 30 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具效率工具 | 效率工具开发者工具沟通协作 |
| 实现语言 | Rust | TypeScript |
| 最近提交 | 11 个月前 | 本月 |
mcp-agent · 概述
一个将 MCP 工具与 LLM 客户端集成的 Rust 框架,处理工具集成和客户端管理。
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
mcp-agent · 使用场景
- 构建利用 LLM 能力的自定义 MCP 工具
- 创建集成多个 MCP 服务器与 AI 功能的应用程序
- 开发将 AI 代理与文件系统操作结合的生产力工具
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
mcp-agent · 安装
安装
- 添加到您的
Cargo.toml:
# 来自 crates.io
mcp-agent = "0.1.0"
# 或来自 GitHub
mcp-agent = { git = "https://github.com/CeerDecy/mcp-agent", branch = "main" }- 构建项目:
cargo build对于 Claude Desktop 集成,请添加到您的 claude_desktop_config.json:
{
"mcpServers": {
"mcp-agent": {
"command": "您的可执行文件路径",
"args": []
}
}
}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"]
}
}
}