memory vs Claude-Code-MCP-Manager
Side-by-side comparison to help you pick between these two MCP servers.
memory by modelcontextprotocol | Claude-Code-MCP-Manager by qdhenry | |
|---|---|---|
| Stars | ★ 85,748 | ★ 24 |
| 30d uses | — | — |
| Score | 77 | 40 |
| Official | ✓ | — |
| Categories | Knowledge GraphAI / LLM ToolsProductivity | Developer ToolsProductivityOther |
| Language | TypeScript | Shell |
| 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.
Claude-Code-MCP-Manager · Summary
A bash script tool for managing MCP configurations for Claude Code with add, remove, and auto-loading capabilities.
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
Claude-Code-MCP-Manager · Use cases
- Managing multiple MCP servers for Claude Code projects
- Automating MCP configuration setup for development teams
- Creating portable MCP configurations across different environments
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"]
}
}
}Claude-Code-MCP-Manager · Install
Installation
- Download the script:
curl -O https://raw.githubusercontent.com/qdhenry/Claude-Code-MCP-Manager/main/mcp-manager.sh- Make it executable:
chmod +x mcp-manager.sh- Move to a location in your PATH (optional):
sudo mv mcp-manager.sh /usr/local/bin/mcp-managerFor Claude Desktop configuration, ensure the MCP servers are properly configured in your claude_desktop_config.json:
{
"mcpServers": {
"supabase": {
"command": "npx",
"args": ["supabase/mcp-server-supabase@latest", "--access-token", "YOUR_TOKEN_HERE"]
},
"digitalocean": {
"command": "npx",
"args": ["-y", "@digitalocean/mcp"]
}
}
}