stealth-browser-mcp vs xiaohongshu-mcp
Side-by-side comparison to help you pick between these two MCP servers.
stealth-browser-mcp by vibheksoni | xiaohongshu-mcp by xpzouying | |
|---|---|---|
| Stars | ★ 643 | ★ 13,616 |
| 30d uses | — | — |
| Score | 54 | 59 |
| Official | — | — |
| Categories | Browser AutomationWeb ScrapingDeveloper Tools | social-mediaBrowser AutomationWeb Scraping |
| Language | Python | Go |
| Last commit | this month | this month |
stealth-browser-mcp · Summary
Stealth Browser MCP provides undetectable browser automation with antibypass capabilities for MCP-compatible AI agents.
xiaohongshu-mcp · Summary
MCP server for automating Xiaohongshu operations including content posting, commenting, and user interaction.
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
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
stealth-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"]
}
}
}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": []
}
}