MCP Catalogs
Home

protonmail-mcp vs memory

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

protonmail-mcp
by amotivv
memory
by modelcontextprotocol
Stars★ 41★ 85,748
30d uses
Score3977
Official
Categories
CommunicationDeveloper ToolsProductivity
Knowledge GraphAI / LLM ToolsProductivity
LanguageJavaScriptTypeScript
Last commit14 mo agothis month

protonmail-mcp · Summary

Protonmail MCP server enables email sending through Protonmail's SMTP service for Claude and Cline.

memory · Summary

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

protonmail-mcp · Use cases

  • Automated email notifications from Claude AI agents
  • Send reports and summaries directly from development workflows
  • Integrate email functionality into Cline-powered development environments

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

protonmail-mcp · Install

Installation

Manual Installation

  1. Clone the repository:
git clone https://github.com/amotivv/protonmail-mcp.git
cd protonmail-mcp
  1. Install dependencies and build:
npm install
npm run build
  1. Add to Claude Desktop configuration:
{
  "mcpServers": {
    "protonmail": {
      "command": "node",
      "args": ["/path/to/protonmail-mcp/build/index.js"]
    }
  }
}
  1. Set environment variables in your config file as described in the README.

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.