memory vs cronmcp
Side-by-side comparison to help you pick between these two MCP servers.
memory by modelcontextprotocol | cronmcp by vaibhavpandeyvpz | |
|---|---|---|
| Stars | ★ 85,748 | ★ 2 |
| 30d uses | — | — |
| Score | 77 | 38 |
| Official | ✓ | — |
| Categories | Knowledge GraphAI / LLM ToolsProductivity | ProductivityDeveloper ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 mo ago |
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
cronmcp · Summary
Open-source MCP server that exposes cron scheduling capabilities via the Model Context Protocol.
memory · Use cases
- Personalizing AI assistant interactions by remembering user preferences, history, and relationships
- Building context-aware chat applications that maintain conversation history
- Creating knowledge bases that persist across AI model sessions
cronmcp · Use cases
- Automating periodic prompt execution in AI workflows
- Creating scheduled reminders or check-ins through MCP clients
- Building time-based triggers for multi-agent systems
memory · Install
Installation
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}VS Code
Use one-click installation buttons or manually configure in .vscode/mcp.json:
{
"servers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}Docker
{
"mcpServers": {
"memory": {
"command": "docker",
"args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
}
}
}cronmcp · Install
Installation
Quick Start
npx cronmcp mcpDevelopment Setup
npm install
npm run build
npm run dev -- mcpClaude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"cron": {
"command": "npx",
"args": ["cronmcp", "mcp"]
}
}
}