time vs remindb
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | remindb by radimsem | |
|---|---|---|
| Stars | ★ 85,748 | ★ 93 |
| 30d uses | — | — |
| Score | 77 | 49 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | AI / LLM ToolsKnowledge GraphDeveloper Tools |
| Language | TypeScript | Go |
| Last commit | this month | this month |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
remindb · Summary
Remindb is an agentic memory database that cuts session tokens by 75–99% using a portable SQLite file with MCP tool integration.
time · Use cases
- Assisting with international meeting scheduling across time zones
- Providing real-time time information for location-based queries
- Enabling time conversion for travel planning and itineraries
remindb · Use cases
- Long-term memory for AI coding assistants to avoid re-reading unchanged files
- Knowledge management system with temperature-based relevance tracking
- Collaborative environment sharing memory databases across multiple agents
time · Install
Installation Options
**Using uv (recommended):**
uvx mcp-server-time**Using PIP:**
pip install mcp-server-time
python -m mcp_server_time**Configure for Claude Desktop:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}remindb · Install
Installation
**One-line install (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**From source (Go 1.26+):**
git clone https://github.com/radimsem/remindb.git
cd remindb
go build -o ~/.local/bin/remindb ./cmd/remindb**MCP Integration (Claude Desktop):** Add to claude_desktop_config.json:
{
"mcpServers": {
"remindb": {
"command": "remindb",
"args": ["serve"]
}
}
}