google-workspace-mcp vs memory
Side-by-side comparison to help you pick between these two MCP servers.
google-workspace-mcp by aaronsb | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 150 | ★ 85,748 |
| 30d uses | — | — |
| Score | 51 | 77 |
| Official | — | ✓ |
| Categories | ProductivityCommunicationCloud Storage | Knowledge GraphAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
google-workspace-mcp · Summary
A production-ready MCP server providing authenticated access to Google Workspace APIs including Gmail, Calendar, Drive, Sheets, and more.
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
google-workspace-mcp · Use cases
- AI assistants managing email triage and calendar scheduling through natural conversation
- Automating document workflows between Gmail, Drive, and Google Sheets
- Personal productivity AI handling cross-account operations between personal and work Google profiles
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-workspace-mcp · Install
MCPB Bundle (Recommended)
Download the .mcpb bundle for your platform from the [latest release](https://github.com/aaronsb/google-workspace-mcp/releases)
npm Installation
npm install @aaronsb/google-workspace-mcpClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"google-workspace": {
"command": "npx",
"args": ["@aaronsb/google-workspace-mcp"],
"env": {
"GOOGLE_CLIENT_ID": "your-client-id",
"GOOGLE_CLIENT_SECRET": "your-client-secret"
}
}
}
}Prerequisites
- Node.js 18+
- Google Cloud OAuth credentials from https://console.cloud.google.com/apis/credentials
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"]
}
}
}