MCP Catalogs
Home

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
Score5477
Official
Categories
AI / LLM ToolsProductivityCommunication
Developer ToolsAI / LLM ToolsOther
LanguageGoTypeScript
Last commit2 mo agothis 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 -d

MCP 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
Comparison generated from public README + GitHub signals. Last updated automatically.