memory vs google-drive-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
memory by modelcontextprotocol | google-drive-mcp by piotr-agier | |
|---|---|---|
| Stars | ★ 85,748 | ★ 151 |
| 30天用量 | — | — |
| 综合分 | 77 | 49 |
| 官方 | ✓ | — |
| 分类 | 知识库 / RAGAI / LLM 工具效率工具 | 本地文件系统云存储效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
memory · 概述
一个实现持久化记忆的 MCP 服务器,使用本地知识图谱让 AI 模型能在聊天间记住用户信息。
google-drive-mcp · 概述
一个功能全面的 MCP 服务器,可通过 OAuth 认证管理 Google Drive 文件、文档、表格、幻灯片和日历。
memory · 使用场景
- 通过记住用户偏好、历史和关系来个性化 AI 助手交互
- 构建维护对话历史的上下文感知聊天应用
- 创建在 AI 模型会话间持久化的知识库
google-drive-mcp · 使用场景
- 自动创建和组织 Google Drive 中的项目文档
- 通过 AI 助手管理日历事件和安排会议
- 通过自然语言搜索和分析电子表格和文档
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"]
}
}
}google-drive-mcp · 安装
安装
选项 1:使用 npx(推荐)
# 运行服务器(首次运行时自动进行身份验证)
npx @piotr-agier/google-drive-mcp
# 可选:如需要,手动运行身份验证
npx @piotr-agier/google-drive-mcp auth选项 2:本地安装
- 克隆并安装:
``bash git clone https://github.com/piotr-agier/google-drive-mcp.git cd google-drive-mcp npm install ``
- 设置凭据:
```bash # 复制示例文件 cp gcp-oauth.keys.example.json gcp-oauth.keys.json
# 编辑 gcp-oauth.keys.json 并添加您的 OAuth 客户端 ID ```
- 身份验证(可选):
``bash npm run auth ``
Claude Desktop 配置
{
"mcpServers": {
"google-drive": {
"command": "npx",
"args": ["@piotr-agier/google-drive-mcp"]
}
}
}