MCP Catalogs
Home

memory vs wappmcp

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

memory
by modelcontextprotocol
wappmcp
by vaibhavpandeyvpz
Stars★ 85,748★ 3
30d uses
Score7736
Official
Categories
Knowledge GraphAI / LLM ToolsProductivity
CommunicationDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis month1 mo ago

memory · Summary

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

wappmcp · Summary

WhatsApp Web MCP server enabling message management and event notifications through stdio.

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

wappmcp · Use cases

  • Integrate WhatsApp messaging into AI workflows through MCP tools
  • Automate message handling and response generation for WhatsApp
  • Monitor and respond to incoming WhatsApp messages through notification channels

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

wappmcp · Install

Installation:

npm install -g wappmcp

Configuration:

npx wappmcp configure

Start the server:

npx wappmcp mcp

To enable notifications:

npx wappmcp mcp --channels

Claude Desktop configuration (add to claude_desktop_config.json):

{
  "mcpServers": {
    "whatsapp": {
      "command": "npx",
      "args": ["wappmcp", "mcp"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.