zenfeed vs everything
Side-by-side comparison to help you pick between these two MCP servers.
zenfeed by glidea | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1,677 | ★ 85,748 |
| 30d uses | — | — |
| Score | 54 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsProductivityCommunication | Developer ToolsAI / LLM ToolsOther |
| Language | Go | TypeScript |
| Last commit | 2 mo ago | this month |
zenfeed · Summary
An AI-powered RSS reader that can function as an MCP server for intelligent feed management.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
zenfeed · Use cases
- Personal information management with AI-powered RSS feed summarization
- Web content monitoring with custom rules and notifications
- MCP integration for AI assistants to access RSS feeds
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
zenfeed · Install
Docker Installation
curl -L -O https://raw.githubusercontent.com/glidea/zenfeed/main/docker-compose.yml
API_KEY="sk-..." docker-compose -p zenfeed up -dMCP Configuration (Cherry Studio)
{
"mcpServers": {
"zenfeed": {
"command": "docker",
"args": ["run", "-p", "1301:1301", "glidea/zenfeed:latest"],
"env": {
"API_KEY": "your_api_key_here"
}
}
}
}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