MCP Catalogs
Home

reddit-mcp vs everything

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

reddit-mcp
by Arindam200
everything
by modelcontextprotocol
Stars★ 285★ 85,748
30d uses
Score4877
Official
Categories
social-mediaWeb ScrapingAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit5 mo agothis month

reddit-mcp · Summary

MCP server providing access to Reddit data through PRAW API, with both read-only and authenticated functionality.

everything · Summary

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

reddit-mcp · Use cases

  • Social media content analysis and engagement tracking
  • AI-driven community research and trend identification
  • Automated content creation and interaction on Reddit

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

reddit-mcp · Install

  1. Clone the repository:
git clone https://github.com/Arindam200/reddit-mcp.git
cd reddit-mcp
  1. Configure MCP server in your Claude Desktop config file (~/Library/Application Support/Claude/claude_desktop_config.json):
{
  "mcpServers": {
    "reddit": {
      "command": "{{PATH_TO_UV}}",
      "args": [
        "--directory",
        "{{PATH_TO_SRC}}",
        "run",
        "server.py"
      ],
      "env": {
        "REDDIT_CLIENT_ID": "your_client_id",
        "REDDIT_CLIENT_SECRET": "your_client_secret",
        "REDDIT_USERNAME": "your_username",
        "REDDIT_PASSWORD": "your_password"
      }
    }
  }
}
  1. Restart Claude Desktop. Obtain Reddit API credentials from [Reddit's app preferences page](https://www.reddit.com/prefs/apps).

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.