time vs archiledger
Side-by-side comparison to help you pick between these two MCP servers.
time by modelcontextprotocol | archiledger by thecookiezen | |
|---|---|---|
| Stars | ★ 85,748 | ★ 5 |
| 30d uses | — | — |
| Score | 77 | 40 |
| Official | ✓ | — |
| Categories | ProductivityDeveloper ToolsCommunication | AI / LLM ToolsKnowledge GraphDeveloper Tools |
| Language | TypeScript | Java |
| Last commit | this month | 1 mo ago |
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
archiledger · Summary
Archiledger is a graph-based MCP memory server with vector search capabilities for persistent AI knowledge storage.
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
archiledger · Use cases
- Personal AI assistant with persistent memory across conversations
- Codebase analysis and documentation into structured knowledge graphs
- AI applications requiring semantic search and relationship discovery
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"]
}
}
}archiledger · Install
Installation
Prerequisites
- Java 21 or higher
- Maven
Building
mvn clean packageRunning Low-Level MCP Server
Transient (In-Memory):
java -jar mcp/target/archiledger-server-1.0.0-SNAPSHOT.jarPersistent:
java -Dladybugdb.data-path=./archiledger.lbdb
-jar mcp/target/archiledger-server-1.0.0-SNAPSHOT.jarClaude Desktop Configuration
Add to Claude Desktop config.json:
{
"mcpServers": {
"archiledger": {
"command": "java",
"args": ["-jar", "mcp/target/archiledger-server-1.0.0-SNAPSHOT.jar"],
"env": {
"LADYBUGDB_DATA_PATH": "./archiledger.lbdb"
}
}
}
}