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 | — | — |
| Score | 29 | 77 |
| Official | — | ✓ |
| Categories | ProductivityDeveloper ToolsOther | Knowledge GraphAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 13 mo ago | this 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
- Clone the repository:
git clone <repository URL>
cd mcp-google-tasks- Install dependencies:
npm install- 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.jsonand place in project root
- Build and run:
npm run build
node build/index.jsClaude 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"]
}
}
}