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 | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | SearchAI / LLM ToolsMedia | Knowledge GraphAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 2 mo ago | this 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 claudeInstalling via mcp-get
npx @michaellatman/mcp-get@latest install @chanmeng666/google-news-serverManual Installation
npm install @chanmeng666/google-news-serverClaude 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"]
}
}
}