memory vs google-drive-mcp
Side-by-side comparison to help you pick between these two MCP servers.
memory by modelcontextprotocol | google-drive-mcp by piotr-agier | |
|---|---|---|
| Stars | ★ 85,748 | ★ 151 |
| 30d uses | — | — |
| Score | 77 | 49 |
| Official | ✓ | — |
| Categories | Knowledge GraphAI / LLM ToolsProductivity | File SystemCloud StorageProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
google-drive-mcp · Summary
A comprehensive MCP server for managing Google Drive files, Docs, Sheets, Slides, and Calendar with OAuth authentication.
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
google-drive-mcp · Use cases
- Automatically creating and organizing project documents in Google Drive
- Managing calendar events and scheduling meetings through AI assistants
- Searching and analyzing spreadsheets and documents through natural language
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"]
}
}
}google-drive-mcp · Install
Installation
Option 1: Use with npx (Recommended)
# Run the server (authentication happens automatically on first run)
npx @piotr-agier/google-drive-mcp
# Optional: Run authentication manually if needed
npx @piotr-agier/google-drive-mcp authOption 2: Local Installation
- Clone and install:
``bash git clone https://github.com/piotr-agier/google-drive-mcp.git cd google-drive-mcp npm install ``
- Set up credentials:
```bash # Copy the example file cp gcp-oauth.keys.example.json gcp-oauth.keys.json
# Edit gcp-oauth.keys.json with your OAuth client ID ```
- Authenticate (optional):
``bash npm run auth ``
Claude Desktop Configuration
{
"mcpServers": {
"google-drive": {
"command": "npx",
"args": ["@piotr-agier/google-drive-mcp"]
}
}
}