MCP Catalogs
Home

mcp-reddit vs everything

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

mcp-reddit
by adhikasp
everything
by modelcontextprotocol
Stars★ 400★ 85,748
30d uses
Score4477
Official
Categories
social-mediaWeb ScrapingAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit12 mo agothis month

mcp-reddit · Summary

MCP server for fetching and analyzing Reddit content with support for different post types.

everything · Summary

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

mcp-reddit · Use cases

  • Content researchers gathering discussions from specific subreddits
  • Social media analysts tracking trends and sentiment
  • Community managers monitoring mentions and feedback

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-reddit · Install

Installing via Smithery

npx -y @smithery/cli install @adhikasp/mcp-reddit --client claude

Manual Installation

{
  "reddit": {
    "command": "uvx",
    "args": ["--from", "git+https://github.com/adhikasp/mcp-reddit.git", "mcp-reddit"],
    "env": {}
  }
}

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.