MCP Catalogs
Home

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
Score7738
Official
Categories
Knowledge GraphAI / LLM ToolsProductivity
ProductivityDeveloper ToolsOther
LanguageTypeScriptTypeScript
Last committhis month1 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 mcp
Development Setup
npm install
npm run build
npm run dev -- mcp
Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "cron": {
      "command": "npx",
      "args": ["cronmcp", "mcp"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.