MCP Catalogs
Home

mcp-rss-aggregator vs everything

Side-by-side comparison to help you pick between these two MCP servers.

mcp-rss-aggregator
by imprvhub
everything
by modelcontextprotocol
Stars★ 25★ 85,748
30d uses
Score4477
Official
Categories
ProductivityAI / LLM ToolsCommunication
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit2 mo agothis month

mcp-rss-aggregator · Summary

An MCP server that fetches and reads RSS feeds in Claude Desktop with OPML support and article filtering.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

mcp-rss-aggregator · Use cases

  • Stay updated with news from multiple RSS sources directly in Claude
  • Organize and filter technical articles by category for research
  • Create personalized news briefings from diverse sources

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-rss-aggregator · Install

  1. Clone the repository: git clone https://github.com/imprvhub/mcp-rss-aggregator
  2. Navigate to the directory: cd mcp-rss-aggregator
  3. Install dependencies: npm install
  4. Build the project: npm run build

Configure Claude Desktop by editing claude_desktop_config.json:

{
  "mcpServers": {
    "rssAggregator": {
      "command": "node",
      "args": ["ABSOLUTE_PATH_TO_DIRECTORY/mcp-rss-aggregator/build/index.js"],
      "feedsPath": "ABSOLUTE_PATH_TO_YOUR_FEEDS_FILE.opml"
    }
  }
}
  1. Restart Claude Desktop

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.