time vs remindb
并排对比,帮你在这两个 MCP server 之间做选择。
time by modelcontextprotocol | remindb by radimsem | |
|---|---|---|
| Stars | ★ 85,748 | ★ 93 |
| 30天用量 | — | — |
| 综合分 | 77 | 49 |
| 官方 | ✓ | — |
| 分类 | 效率工具开发者工具沟通协作 | AI / LLM 工具知识库 / RAG开发者工具 |
| 实现语言 | TypeScript | Go |
| 最近提交 | 本月 | 本月 |
time · 概述
功能全面的 MCP 服务器,提供时间和时区转换功能,可自动检测系统时区。
remindb · 概述
Remindb 是一个代理记忆数据库,通过便携式 SQLite 文件与 MCP 工具集成,可减少 75-99% 的会话令牌。
time · 使用场景
- 协助安排跨时区的国际会议
- 为基于位置的查询提供实时时间信息
- 为旅行计划和行程安排提供时间转换
remindb · 使用场景
- 为 AI 编码助手提供长期记忆,避免重复阅读未更改的文件
- 具有基于温度的相关性跟踪的知识管理系统
- 跨多个代理共享记忆数据库的协作环境
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"]
}
}
}remindb · 安装
安装
**一键安装 (Linux/macOS):**
curl -fsSL https://raw.githubusercontent.com/radimsem/remindb/main/install.sh | bash**Windows (PowerShell):**
iwr -useb https://raw.githubusercontent.com/radimsem/remindb/main/install.ps1 | iex**从源码编译 (Go 1.26+):**
git clone https://github.com/radimsem/remindb.git
cd remindb
go build -o ~/.local/bin/remindb ./cmd/remindb**MCP 集成 (Claude Desktop):** 添加到 claude_desktop_config.json:
{
"mcpServers": {
"remindb": {
"command": "remindb",
"args": ["serve"]
}
}
}