matrix-mcp-server vs time
并排对比,帮你在这两个 MCP server 之间做选择。
matrix-mcp-server by mjknowles | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 44 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 42 | 77 |
| 官方 | — | ✓ |
| 分类 | 沟通协作开发者工具效率工具 | 效率工具开发者工具沟通协作 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 9 个月前 | 本月 |
matrix-mcp-server · 概述
Matrix MCP Server 提供 OAuth 2.0 认证和 15 个工具,用于 Matrix 家庭服务器集成,支持房间管理、消息传递和用户资料操作。
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
matrix-mcp-server · 使用场景
- 将 Matrix 聊天功能集成到 AI 助手中,实现自动化房间管理和消息传递
- 构建基于 Matrix 房间事件或消息的工作流自动化
- 创建仪表板界面,通过 MCP 客户端监控和管理 Matrix 通信
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
matrix-mcp-server · 安装
安装
前提条件
- Node.js 20+ 和 npm
- Matrix 家庭服务器访问权限(Synapse、Dendrite 等)
- MCP 客户端(Claude Desktop、带有 MCP 扩展的 VS Code 等)
步骤
# 克隆仓库
git clone <repository-url>
cd matrix-mcp-server
# 安装依赖
npm install
# 构建项目
npm run build
# 配置环境
cp .env.example .env
# 编辑 .env 文件设置您的配置
# 启动服务器
npm startClaude Desktop 集成
{
"mcpServers": {
"matrix": {
"command": "node",
"args": ["dist/server.js"],
"env": {
"ENABLE_OAUTH": "true",
"MATRIX_HOMESERVER_URL": "https://matrix.example.com"
}
}
}
}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"]
}
}
}