memory vs mcp-walichat
Side-by-side comparison to help you pick between these two MCP servers.
memory by modelcontextprotocol | mcp-walichat by walichat | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1 |
| 30d uses | — | — |
| Score | 77 | 34 |
| Official | ✓ | — |
| Categories | Knowledge GraphAI / LLM ToolsProductivity | CommunicationProductivityDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 11 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-walichat · Summary
WhatsApp MCP connector for AI clients to automate messaging, analyze conversations, and manage groups via WaliChat API.
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-walichat · Use cases
- Automate customer service responses through WhatsApp from AI assistants
- Send bulk messages and campaigns to WhatsApp contacts from AI prompts
- Analyze chat conversations for insights and sentiment analysis
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-walichat · Install
Installation
Local Installation
npm install mcp-walichatHTTP Streaming (Recommended)
For clients that support HTTP streaming, add the following configuration:
**Claude Desktop Configuration** Add to your claude_desktop_config.json:
{
"mcpServers": {
"walichat": {
"type": "http",
"url": "https://api.wali.chat/mcp?key=YOUR_WALICHAT_API_KEY"
}
}
}**VS Code Copilot Configuration** In VS Code settings:
{
"mcp.servers": {
"walichat": {
"url": "https://api.wali.chat/mcp?key=YOUR_WALICHAT_API_KEY",
"transport": "http-streaming"
}
}
}