aiquila vs memory
Side-by-side comparison to help you pick between these two MCP servers.
aiquila by elgorro | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 17 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | File SystemCloud StorageProductivity | Knowledge GraphAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
aiquila · Summary
AIquila is an MCP server connecting Claude AI to Nextcloud for file and data management.
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
aiquila · Use cases
- Browse and search Nextcloud files through conversation with Claude
- Create and manage notes and tasks directly via Claude AI
- Analyze documents and spreadsheets within Nextcloud interface
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
aiquila · Install
Install AIquila MCP server using npm:
npm install -g aiquila-mcpAdd to Claude Desktop configuration:
{
"mcpServers": {
"aiquila": {
"command": "npx",
"args": ["aiquila-mcp"]
}
}
}For detailed installation guides for different paths, see [Installation Documentation](docs/installation.md).
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"]
}
}
}