reddit-mcp-buddy vs stealth-browser-mcp
Side-by-side comparison to help you pick between these two MCP servers.
reddit-mcp-buddy by karanb192 | stealth-browser-mcp by vibheksoni | |
|---|---|---|
| Stars | ★ 649 | ★ 643 |
| 30d uses | — | — |
| Score | 54 | 54 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationCommunication | Browser AutomationWeb ScrapingDeveloper Tools |
| Language | TypeScript | Python |
| 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.
stealth-browser-mcp · Summary
Stealth Browser MCP provides undetectable browser automation with antibypass capabilities for MCP-compatible AI agents.
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
stealth-browser-mcp · Use cases
- Automating web scraping on protected websites with antibot measures
- Creating UI clones of websites through AI chat commands
- Intercepting and modifying network traffic in real-time
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-buddystealth-browser-mcp · Install
# Clone and install
git clone https://github.com/vibheksoni/stealth-browser-mcp.git
cd stealth-browser-mcp
python -m venv venv
# Activate virtual environment
# Windows:
venv\Scripts\activate
# Mac/Linux:
source venv/bin/activate
pip install -r requirements.txt**Claude Desktop configuration:**
{
"mcpServers": {
"stealth-browser-mcp": {
"command": "/path/to/stealth-browser-mcp/venv/bin/python",
"args": ["/path/to/stealth-browser-mcp/src/server.py"]
}
}
}