claude-code-google-workspace vs memory
Side-by-side comparison to help you pick between these two MCP servers.
claude-code-google-workspace by evolsb | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 20 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | ProductivityCommunicationDeveloper Tools | Knowledge GraphAI / LLM ToolsProductivity |
| Language | Shell | TypeScript |
| Last commit | 2 mo ago | this month |
claude-code-google-workspace · Summary
MCP servers for Google Workspace (Gmail, Drive, Calendar, Sheets, Docs) and Slack with multi-account support.
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
claude-code-google-workspace · Use cases
- Accessing emails and documents across multiple Google accounts
- Managing calendar events and tasks from Slack and Google Workspace
- Searching and retrieving content from Google Drive and Slack conversations
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
claude-code-google-workspace · Install
Quick Start
- Clone this repo and open Claude Code in it
git clone https://github.com/YOUR_USERNAME/claude-code-google-workspace.git
cd claude-code-google-workspace
claude- Tell Claude Code: "Set up Google Workspace MCP for me"
- Restart Claude Code to load the new MCP servers
Manual Setup
Refer to [docs/manual-setup.md](docs/manual-setup.md) for detailed step-by-step instructions.
Configuration
Create .mcp.json at project root with:
{
"mcpServers": {
"gws-personal": {
"command": "bash",
"args": ["./gws-token-wrapper.sh", "personal.json"]
},
"slack": {
"command": "npx",
"args": ["slack-mcp-server"]
}
}
}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"]
}
}
}