MCP Catalogs
Home

memory vs mcp-stytch-consumer-todo-list

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

memory
by modelcontextprotocol
mcp-stytch-consumer-todo-list
by stytchauth
Stars★ 85,748★ 27
30d uses
Score7744
Official
Categories
Knowledge GraphAI / LLM ToolsProductivity
ProductivityDeveloper ToolsSecurity
LanguageTypeScriptTypeScript
Last committhis month2 mo ago

memory · Summary

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

mcp-stytch-consumer-todo-list · Summary

Cloudflare Workers MCP server for TODO list management with Stytch authentication.

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-stytch-consumer-todo-list · Use cases

  • AI agents managing personal TODO lists with authentication
  • Demonstration of integrating MCP with authentication systems
  • Example of building MCP servers on serverless platforms

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"]
    }
  }
}

mcp-stytch-consumer-todo-list · Install

Installation

  1. Clone the repository: git clone https://github.com/stytchauth/mcp-stytch-consumer-todo-list.git
  2. Install dependencies: npm i
  3. Copy environment templates: cp .env.template .env.local and cp .dev.vars.template .dev.vars
  4. Configure environment variables with your Stytch credentials
  5. Run locally: npm run dev
  6. MCP server is available at http://localhost:3000/mcp

Claude Desktop Configuration

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "stytch-todo": {
      "command": "npx",
      "args": ["@modelcontextprotocol/inspector@latest"],
      "env": {
        "STYTCH_PROJECT_ID": "your-project-id",
        "STYTCH_SECRET": "your-secret"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.