reddit-mcp-buddy vs everything
Side-by-side comparison to help you pick between these two MCP servers.
reddit-mcp-buddy by karanb192 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 649 | ★ 85,748 |
| 30d uses | — | — |
| Score | 54 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsBrowser AutomationCommunication | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 2 mo ago | this month |
reddit-mcp-buddy · Summary
A production-ready MCP server for browsing Reddit with AI assistants, featuring multiple auth tiers and clean data.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
reddit-mcp-buddy · Use cases
- AI assistants browsing Reddit content and discussions in real-time
- Sentiment analysis across multiple subreddits for trending topics
- User profile analysis and activity tracking 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-buddy · Install
For Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"reddit": {
"command": "npx",
"args": ["-y", "reddit-mcp-buddy"]
}
}
}For Claude Code
claude mcp add --transport stdio reddit-mcp-buddy -s user -- npx -y reddit-mcp-buddyeverything · 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