MCP-Manager-GUI vs memory
Side-by-side comparison to help you pick between these two MCP servers.
MCP-Manager-GUI by gabrielbacha | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 17 | ★ 85,748 |
| 30d uses | — | — |
| Score | 34 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsProductivity | Knowledge GraphAI / LLM ToolsProductivity |
| Language | — | TypeScript |
| Last commit | 13 mo ago | this month |
MCP-Manager-GUI · Summary
A GUI tool for managing MCP server configurations across different clients.
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
MCP-Manager-GUI · Use cases
- Managing multiple MCP servers across Claude and Cursor
- Simplifying configuration setup for new MCP servers
- Testing different MCP server configurations without manual editing
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-Manager-GUI · Install
Download the MCP Manager application from the [official website](https://www.mindfulapps.xyz/mcp).
To configure MCP Manager:
- Open the application
- Add your client by specifying the JSON path to its configuration
- Add new server configurations through the provided form
- Enable or disable servers using the toggle switches
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"]
}
}
}