everything vs mcp_newsnow
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp_newsnow by sligter | |
|---|---|---|
| Stars | ★ 85,748 | ★ 69 |
| 30d uses | — | — |
| Score | 77 | 40 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | MediaProductivityAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 12 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp_newsnow · Summary
A news aggregation MCP server providing trending topics from 14+ Chinese and English platforms.
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
mcp_newsnow · Use cases
- Keep up with trending topics across multiple Chinese social media platforms
- Research hot discussions on forums like Zhihu and Bilibili
- Monitor GitHub trending repositories alongside Chinese tech news
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-everythingmcp_newsnow · Install
Installation
From PyPI:
pip install mcp-newsnow
# or
uv pip install mcp-newsnowClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"get_news": {
"command": "uvx",
"args": [
"mcp-newsnow"
]
}
}
}