MCP Catalogs
Home

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
Score4377
Official
Categories
ProductivityCommunicationDeveloper Tools
Knowledge GraphAI / LLM ToolsProductivity
LanguageShellTypeScript
Last commit2 mo agothis 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

  1. 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
  1. Tell Claude Code: "Set up Google Workspace MCP for me"
  2. 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"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.