MCPJungle vs memory
Side-by-side comparison to help you pick between these two MCP servers.
MCPJungle by mcpjungle | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1,041 | ★ 85,748 |
| 30d uses | — | — |
| Score | 54 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsOps & InfraProductivity | Knowledge GraphAI / LLM ToolsProductivity |
| Language | Go | TypeScript |
| Last commit | this month | this month |
MCPJungle · Summary
A self-hosted MCP gateway that centralizes multiple MCP servers behind one endpoint.
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
MCPJungle · Use cases
- Personal development setup with centralized MCP tools access
- Team infrastructure sharing MCP servers with access controls
- Simplifying AI client configuration by replacing multiple endpoints with one
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
MCPJungle · Install
Quick Start
Using Docker (Recommended)
curl -O https://raw.githubusercontent.com/mcpjungle/MCPJungle/refs/heads/main/docker-compose.yaml
docker compose up -dUsing Homebrew
brew install mcpjungle/mcpjungle/mcpjungleClaude Desktop Configuration
Add this to your Claude Desktop config:
{
"mcpServers": {
"mcpjungle": {
"command": "npx",
"args": [
"mcp-remote",
"http://localhost:8080/mcp",
"--allow-http"
]
}
}
}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"]
}
}
}