nocturne_memory vs time
Side-by-side comparison to help you pick between these two MCP servers.
nocturne_memory by Dataojitori | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1,080 | ★ 85,748 |
| 30d uses | — | — |
| Score | 55 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsKnowledge GraphDeveloper Tools | ProductivityDeveloper ToolsCommunication |
| Language | Python | TypeScript |
| Last commit | this month | this month |
nocturne_memory · Summary
A long-term memory server for MCP agents that enables persistent, cross-session identity and context.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
nocturne_memory · Use cases
- Enable AI agents to maintain consistent identity and context across multiple LLM platforms
- Provide AI with long-term personal memory for better relationship-building with users
- Allow AI to autonomously organize and retrieve complex information structures across sessions
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
nocturne_memory · Install
Installation
Prerequisites
- Python 3.10+
- Node.js (for building the dashboard frontend)
Step 1: Clone & Install Dependencies
git clone https://github.com/Dataojitori/nocturne_memory.git
cd nocturne_memory
pip install -r backend/requirements.txtStep 2: Connect to Your AI Client
Add to your AI client's MCP configuration (replace with your actual path):
{
"mcpServers": {
"nocturne_memory": {
"command": "python",
"args": ["/path/to/nocturne_memory/backend/mcp_server.py"]
}
}
}For Claude Desktop
{
"mcpServers": {
"nocturne-memory": {
"command": "python",
"args": ["/path/to/nocturne_memory/backend/mcp_server.py"]
}
}
}For Antigravity (Windows)
Due to CRLF/LF issues on Windows, use the wrapper:
{
"mcpServers": {
"nocturne_memory": {
"command": "python",
"args": ["/path/to/nocturne_memory/backend/mcp_wrapper.py"]
}
}
}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"]
}
}
}