memory vs google-mcp-remote
Side-by-side comparison to help you pick between these two MCP servers.
memory by modelcontextprotocol | google-mcp-remote by vakharwalad23 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 14 |
| 30d uses | — | — |
| Score | 77 | 41 |
| Official | ✓ | — |
| Categories | Knowledge GraphAI / LLM ToolsProductivity | CommunicationProductivityDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 4 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-remote · Summary
Cloudflare Workers-based MCP server providing Google API tools (Gmail, Calendar, Drive, etc.) for AI clients.
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-remote · Use cases
- Automate email composition and management through AI assistants
- Schedule calendar events and find meeting times using natural language
- Access and manipulate Google Drive files and documents via AI commands
- Search YouTube videos and retrieve contact information through AI interfaces
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-remote · Install
Installation
Prerequisites
- Create a Google Cloud Project and set up OAuth 2.0 credentials
- Enable required APIs (Gmail, Calendar, Drive, Tasks, YouTube, People/Contacts)
- Add authorized JavaScript origins and redirect URIs
- Sign up for Cloudflare account and install Wrangler CLI
Deployment Steps
- Clone the repository:
git clone https://github.com/vakharwalad23/google-mcp-remote.git - Install dependencies:
bun install - Configure secrets:
wrangler secret put GOOGLE_OAUTH_CLIENT_IDand other secrets - Create KV namespace:
wrangler kv:namespace create OAUTH_KV - Deploy:
bun run deploy
Claude Configuration
{
"mcpServers": {
"google-mcp-remote": {
"command": "npx",
"args": [
"mcp-remote",
"https://your-project.your-username.workers.dev/sse"
]
}
}
}