server-google-news vs everything
Side-by-side comparison to help you pick between these two MCP servers.
server-google-news by ChanMeng666 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 122 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | SearchAI / LLM ToolsMedia | Developer ToolsAI / LLM ToolsOther |
| 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.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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"
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything