time vs AgentChat
并排对比,帮你在这两个 MCP server 之间做选择。
time by modelcontextprotocol | AgentChat by Shy2593666979 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 715 |
| 30天用量 | — | — |
| 综合分 | 77 | 52 |
| 官方 | ✓ | — |
| 分类 | 效率工具开发者工具沟通协作 | AI / LLM 工具开发者工具效率工具 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 1 个月前 |
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
AgentChat · 概述
AgentChat 是一个基于LLM的智能体交流平台,支持MCP协议实现动态工具调用和知识检索。
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
AgentChat · 使用场景
- 基于RAG技术的企业知识管理AI智能体
- 多智能体任务自动化和工作流编排
- 基于OpenAPI的自定义工具集成MCP服务器生成
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"]
}
}
}AgentChat · 安装
AgentChat MCP 服务器安装
Docker 部署
# 1. 克隆仓库
git clone https://github.com/Shy2593666979/AgentChat.git
cd AgentChat
# 2. 编辑配置文件
vim docker/docker_config.yaml
# 3. 启动服务
cd docker
docker-compose up --build -d本地开发
# 后端设置
cd src/backend
pip install -r requirements.txt
uv sync # 推荐
# 前端设置
cd src/frontend
npm install
npm run devClaude Desktop 配置
添加到 Claude Desktop config.json:
{
"mcpServers": {
"agentchat": {
"command": "python",
"args": ["path/to/agentchat/mcp_server.py"]
}
}
}