MCP Catalogs
Home

mcp-task-manager-server vs memory

Side-by-side comparison to help you pick between these two MCP servers.

mcp-task-manager-server
by bsmi021
memory
by modelcontextprotocol
Stars★ 23★ 85,748
30d uses
Score4077
Official
Categories
ProductivityDeveloper ToolsOther
Knowledge GraphAI / LLM ToolsProductivity
LanguageTypeScriptTypeScript
Last commit11 mo agothis month

mcp-task-manager-server · Summary

An MCP server for project and task management using SQLite with client-driven tools.

memory · Summary

An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.

mcp-task-manager-server · Use cases

  • AI agents managing complex project workflows across multiple tasks
  • Development teams tracking bug fixes and feature implementations
  • Personal productivity systems for task prioritization and dependency management

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

mcp-task-manager-server · Install

Installation

  1. **Prerequisites:** Node.js (LTS recommended), npm
  2. **Install Dependencies:**

``bash npm install ``

  1. **Run in Development Mode:**

``bash npm run dev ``

  1. **Build for Production:**

``bash npm run build ``

  1. **Run Production Build:**

``bash npm start ``

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "task-manager": {
      "command": "node",
      "args": ["dist/server.js"],
      "env": {
        "DATABASE_PATH": "./data/taskmanager.db"
      }
    }
  }
}

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"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.