gemini-skill vs xiaohongshu-mcp
Side-by-side comparison to help you pick between these two MCP servers.
gemini-skill by WJZ-P | xiaohongshu-mcp by xpzouying | |
|---|---|---|
| Stars | ★ 813 | ★ 13,616 |
| 30d uses | — | — |
| Score | 52 | 59 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationProductivity | social-mediaBrowser AutomationWeb Scraping |
| Language | JavaScript | Go |
| Last commit | 1 mo ago | this month |
gemini-skill · Summary
MCP server that automates Google Gemini through browser automation for image generation, chat, and image extraction.
xiaohongshu-mcp · Summary
MCP server for automating Xiaohongshu operations including content posting, commenting, and user interaction.
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
xiaohongshu-mcp · Use cases
- Automated content publishing to maintain social media presence
- AI-powered social media management for businesses
- Content research and analysis through automated search
gemini-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"]
}
}
}xiaohongshu-mcp · Install
Installation Options
**Option 1: Download Precompiled Binary**
- Download the binary for your platform from [GitHub Releases](https://github.com/xpzouying/xiaohongshu-mcp/releases)
- Run the login tool first:
chmod +x xiaohongshu-login-darwin-arm64 && ./xiaohongshu-login-darwin-arm64 - Start the MCP service:
chmod +x xiaohongshu-mcp-darwin-arm64 && ./xiaohongshu-mcp-darwin-arm64
**Option 2: Use Docker (Recommended)**
docker pull xpzouying/xiaohongshu-mcp
docker compose up -d```
**Option 3: Build from Source**
1. Clone the repository
2. Run `go run cmd/login/main.go` for login
3. Run `go run .` to start the MCP service
### Claude Desktop Configuration
Add to your `claude_desktop_config.json`:
```json
"mcpServers": {
"xiaohongshu": {
"command": "path/to/xiaohongshu-mcp",
"args": []
}
}