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 | — | — |
| Score | 39 | 77 |
| Official | — | ✓ |
| Categories | CommunicationDeveloper ToolsProductivity | Knowledge GraphAI / LLM ToolsProductivity |
| Language | JavaScript | TypeScript |
| Last commit | 14 mo ago | this 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
- Clone the repository:
git clone https://github.com/amotivv/protonmail-mcp.git
cd protonmail-mcp- Install dependencies and build:
npm install
npm run build- Add to Claude Desktop configuration:
{
"mcpServers": {
"protonmail": {
"command": "node",
"args": ["/path/to/protonmail-mcp/build/index.js"]
}
}
}- 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"]
}
}
}