MCP Catalogs
Home

mcp-google-tasks vs memory

Side-by-side comparison to help you pick between these two MCP servers.

mcp-google-tasks
by ktmage
memory
by modelcontextprotocol
Stars★ 2★ 85,748
30d uses
Score2977
Official
Categories
ProductivityDeveloper ToolsOther
Knowledge GraphAI / LLM ToolsProductivity
LanguageTypeScriptTypeScript
Last commit13 mo agothis month

mcp-google-tasks · Summary

MCP server for Google Tasks integration, allowing AI assistants to manage tasks through the protocol.

memory · Summary

An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.

mcp-google-tasks · Use cases

  • AI assistants managing personal task lists
  • Automated task creation based on other AI outputs
  • Productivity tools integrating with Google Tasks

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

mcp-google-tasks · Install

Installation

  1. Clone the repository:
git clone <repository URL>
cd mcp-google-tasks
  1. Install dependencies:
npm install
  1. Configure Google Cloud Project:
  • Enable Tasks API in Google Cloud Console
  • Create OAuth 2.0 credentials for a desktop app
  • Rename credentials file to credentials.json and place in project root
  1. Build and run:
npm run build
node build/index.js

Claude Desktop Configuration

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "google-tasks": {
      "command": "node",
      "args": ["/full/path/to/mcp-google-tasks/build/index.js"]
    }
  }
}

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.