reddit-mcp-buddy vs gemini-skill
Side-by-side comparison to help you pick between these two MCP servers.
reddit-mcp-buddy by karanb192 | gemini-skill by WJZ-P | |
|---|---|---|
| Stars | ★ 649 | ★ 813 |
| 30d uses | — | — |
| Score | 54 | 52 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationCommunication | AI / LLM ToolsBrowser AutomationProductivity |
| Language | TypeScript | JavaScript |
| Last commit | 2 mo ago | 1 mo ago |
reddit-mcp-buddy · Summary
A production-ready MCP server for browsing Reddit with AI assistants, featuring multiple auth tiers and clean data.
gemini-skill · Summary
MCP server that automates Google Gemini through browser automation for image generation, chat, and image extraction.
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
gemini-skill · Use cases
- Generate images through text prompts in AI assistants
- Automate multi-turn conversations with Gemini
- Extract and download images from chat conversations automatically
- Integrate Gemini capabilities into AI agent workflows
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-buddygemini-skill · Install
Installation
Prerequisites
- Node.js ≥ 18
- Chrome/Edge/Chromium browser with Google account logged in
Steps
git clone https://github.com/WJZ-P/gemini-skill.git
cd gemini-skill
npm installConfiguration
Create a .env file in the project root with your configuration:
BROWSER_DEBUG_PORT=40821
BROWSER_HEADLESS=false
DAEMON_TTL_MS=1800000
OUTPUT_DIR=./gemini-imageClaude Desktop Configuration
Add to Claude Desktop's claude_desktop_config.json:
{
"mcpServers": {
"gemini": {
"command": "node",
"args": ["<absolute_path_to_gemini-skill>/src/mcp-server.js"]
}
}
}