MCP Catalogs
Home

memory vs mcp-server-email

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

memory
by modelcontextprotocol
mcp-server-email
by Shy2593666979
Stars★ 85,748★ 76
30d uses
Score7739
Official
Categories
Knowledge GraphAI / LLM ToolsProductivity
CommunicationFile SystemProductivity
LanguageTypeScriptPython
Last committhis month13 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-server-email · Summary

MCP server for sending emails with attachments and searching files in directories.

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-server-email · Use cases

  • Automating email sending from LLM-based applications
  • Searching for specific attachments in directories
  • Integrating email functionality into AI-powered workflows

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-server-email · Install

Installation

  1. Install dependencies:
pip install pydantic python-dotenv
  1. Create an email.json file with SMTP server configurations.
  1. Run the server:
python -m mcp_email_server (--dir /path/to/attachment/directory)

For Claude Desktop, add to your settings:

{
  "mcpServers": {
    "email": {
      "command": "python",
      "args": [
        "path/to/mcp_server_email",
        "--dir",
        "/path/to/attachment/directory"
      ],
      "env": {
        "SENDER": "your_email@gmail.com",
        "PASSWORD": "your_app_password"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.