MARM-Systems vs time
Side-by-side comparison to help you pick between these two MCP servers.
MARM-Systems by Lyellr88 | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 288 | ★ 85,748 |
| 30d uses | — | — |
| Score | 51 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | ProductivityDeveloper ToolsCommunication |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this month |
MARM-Systems · Summary
MARM MCP server provides persistent memory and structured session context for AI agents across tools.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
MARM-Systems · Use cases
- Enabling long-term memory for AI agents across multiple conversation sessions
- Facilitating knowledge sharing between different AI assistants (Claude, Gemini, etc.)
- Providing persistent memory for development environments and technical workflows
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
MARM-Systems · Install
Installation
**Docker Install (Recommended):**
docker pull lyellr88/marm-mcp-server:latest
docker run -d --name marm-mcp-server -p 8001:8001 -v ~/.marm:/home/marm/.marm lyellr88/marm-mcp-server:latest
claude mcp add --transport http marm-memory http://localhost:8001/mcp**Local Install:**
pip install marm-mcp-server==2.2.6
pip install -r marm-mcp-server/requirements.txt
python marm-mcp-server
claude mcp add --transport http marm-memory http://localhost:8001/mcp**Stdio Install:**
pip install marm-mcp-server==2.2.6
pip install -r marm-mcp-server/requirements_stdio.txt
claude mcp add --transport stdio marm-memory-stdio python "path/to/marm-mcp-server/server_stdio.py"
python marm-mcp-server/server_stdio.py**Claude Desktop Configuration (JSON):**
{
"mcpServers": {
"marm-memory": {
"httpUrl": "http://localhost:8001/mcp",
"authentication": {
"type": "oauth",
"clientId": "local_client_b6f3a01e",
"clientSecret": "local_secret_ad6703cd2b4243ab"
}
}
}
}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"]
}
}
}