furi vs memory
Side-by-side comparison to help you pick between these two MCP servers.
furi by ashwwwin | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 88 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsOps & InfraProductivity | Knowledge GraphAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 8 mo ago | this month |
furi · Summary
A comprehensive CLI & API tool for managing MCP servers with process management, HTTP routing, and SSE aggregation capabilities.
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
furi · Use cases
- Managing multiple MCP servers in production environments with process monitoring and logging
- Providing HTTP API access to MCP tools for integration with web applications
- Aggregating multiple MCP servers into a single endpoint for clients that support SSE transport
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
furi · Install
Installation
On macOS/Linux:
curl -fsSL https://furi.so/install | bashVerify installation:
furiConfiguration for Claude Desktop
Add to your Claude Desktop config.json:
{
"mcpServers": {
"furi": {
"command": "furi",
"args": ["connect"]
}
}
}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"]
}
}
}