MCP Catalogs
首页

aiquila vs memory

并排对比,帮你在这两个 MCP server 之间做选择。

aiquila
by elgorro
memory
by modelcontextprotocol
Stars★ 17★ 85,748
30天用量
综合分4377
官方
分类
本地文件系统云存储效率工具
知识库 / RAGAI / LLM 工具效率工具
实现语言TypeScriptTypeScript
最近提交本月本月

aiquila · 概述

AIquila 是一个将 Claude AI 与 Nextcloud 连接的 MCP 服务器,用于文件和数据管理。

memory · 概述

一个实现持久化记忆的 MCP 服务器,使用本地知识图谱让 AI 模型能在聊天间记住用户信息。

aiquila · 使用场景

  • 通过与 Claude 对话浏览和搜索 Nextcloud 文件
  • 直接通过 Claude AI 创建和管理笔记和任务
  • 在 Nextcloud 界面内分析文档和电子表格

memory · 使用场景

  • 通过记住用户偏好、历史和关系来个性化 AI 助手交互
  • 构建维护对话历史的上下文感知聊天应用
  • 创建在 AI 模型会话间持久化的知识库

aiquila · 安装

使用 npm 安装 AIquila MCP 服务器:

npm install -g aiquila-mcp

添加到 Claude Desktop 配置:

{
  "mcpServers": {
    "aiquila": {
      "command": "npx",
      "args": ["aiquila-mcp"]
    }
  }
}

有关不同路径的详细安装指南,请参阅[安装文档](docs/installation.md)。

memory · 安装

安装

Claude Desktop

添加到你的 claude_desktop_config.json 文件中:

{
  "mcpServers": {
    "memory": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-memory"
      ]
    }
  }
}

VS Code

使用一键安装按钮或在 .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"]
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。