memory vs whatsapp-mcp
Side-by-side comparison to help you pick between these two MCP servers.
memory by modelcontextprotocol | whatsapp-mcp by verygoodplugins | |
|---|---|---|
| Stars | ★ 85,748 | ★ 49 |
| 30d uses | — | — |
| Score | 77 | 45 |
| Official | ✓ | — |
| Categories | Knowledge GraphAI / LLM ToolsProductivity | CommunicationMediaAI / LLM Tools |
| Language | TypeScript | Go |
| Last commit | this month | this month |
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
whatsapp-mcp · Summary
WhatsApp MCP server enables Claude to read and send WhatsApp messages with full media support.
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
whatsapp-mcp · Use cases
- Automate message responses and management for WhatsApp conversations
- Search and analyze message history for specific information
- Send automated messages or media files to contacts or groups
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"]
}
}
}whatsapp-mcp · Install
Installation
- **Clone the repository**
``bash git clone https://github.com/verygoodplugins/whatsapp-mcp.git cd whatsapp-mcp ``
- **Start the WhatsApp bridge**
``bash cd whatsapp-bridge go run . `` Scan the QR code with WhatsApp on your phone to authenticate.
- **Configure Claude Desktop**
Add to ~/Library/Application Support/Claude/claude_desktop_config.json: ``json { "mcpServers": { "whatsapp": { "command": "uv", "args": [ "--directory", "/path/to/whatsapp-mcp/whatsapp-mcp-server", "run", "main.py" ] } } } ``