memory vs google-mcp
Side-by-side comparison to help you pick between these two MCP servers.
memory by modelcontextprotocol | google-mcp by vakharwalad23 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 16 |
| 30d uses | — | — |
| Score | 77 | 42 |
| Official | ✓ | — |
| Categories | Knowledge GraphAI / LLM ToolsProductivity | CommunicationProductivityCloud Storage |
| Language | TypeScript | TypeScript |
| Last commit | this month | 2 mo ago |
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
google-mcp · Summary
MCP server providing access to Google services like Gmail, Calendar, Drive, and Tasks 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-mcp · Use cases
- Automate email workflows by composing and sending messages with attachments directly from AI applications
- Schedule and manage calendar events through natural language commands in AI assistants
- Access and manage Google Drive files including reading content, creating new files, and updating existing ones
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-mcp · Install
Install Google MCP Tools
Quick Install
Click the badge for one-click install with .mcpb:
[](https://github.com/vakharwalad23/google-mcp/releases/download/v1.1.0/google-mcp.mcpb)
Manual Installation
- Install Bun:
``bash brew install oven-sh/bun/bun # macOS/Linux with Homebrew ``
- Set up OAuth in Google Cloud Console
- Configure Claude Desktop:
{
"mcpServers": {
"google-mcp": {
"command": "bunx",
"args": ["--no-cache", "google-mcp@latest"],
"env": {
"GOOGLE_OAUTH_CLIENT_ID": "<YOUR_CLIENT_ID>",
"GOOGLE_OAUTH_CLIENT_SECRET": "<YOUR_CLIENT_SECRET>",
"GOOGLE_OAUTH_TOKEN_PATH": "<PATH_TO_STORE_TOKENS>"
}
}
}
}```