MCP Catalogs
Home

server-google-news vs memory

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

server-google-news
by ChanMeng666
memory
by modelcontextprotocol
Stars★ 122★ 85,748
30d uses
Score4777
Official
Categories
SearchAI / LLM ToolsMedia
Knowledge GraphAI / LLM ToolsProductivity
LanguageTypeScriptTypeScript
Last commit2 mo agothis month

server-google-news · Summary

MCP server providing Google News search via SerpAPI with automatic categorization and multi-language support.

memory · Summary

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

server-google-news · Use cases

  • AI agents researching current events across multiple industries and topics
  • News monitoring and content aggregation for businesses and researchers
  • Multi-language news search with automatic categorization for better content organization

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

server-google-news · Install

Installation

Installing via Smithery

npx -y @smithery/cli install @chanmeng666/google-news-server --client claude

Installing via mcp-get

npx @michaellatman/mcp-get@latest install @chanmeng666/google-news-server

Manual Installation

npm install @chanmeng666/google-news-server

Claude Desktop Configuration

Add to your claude_desktop_config.json:

"google-news": {
  "command": "node",
  "args": [
    "path/to/node_modules/@chanmeng666/google-news-server/dist/index.js"
  ],
  "env": {
    "SERP_API_KEY": "your-api-key"
  }
}

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.