chrome-devtools-mcp vs xiaohongshu-mcp
Side-by-side comparison to help you pick between these two MCP servers.
chrome-devtools-mcp by ChromeDevTools | xiaohongshu-mcp by xpzouying | |
|---|---|---|
| Stars | ★ 39,757 | ★ 13,616 |
| 30d uses | — | — |
| Score | 65 | 59 |
| Official | — | — |
| Categories | Browser AutomationDeveloper ToolsWeb Scraping | social-mediaBrowser AutomationWeb Scraping |
| Language | TypeScript | Go |
| Last commit | this month | this month |
chrome-devtools-mcp · Summary
Chrome DevTools MCP server lets AI coding agents control and inspect live Chrome browsers through the MCP protocol.
xiaohongshu-mcp · Summary
MCP server for automating Xiaohongshu operations including content posting, commenting, and user interaction.
chrome-devtools-mcp · Use cases
- Automated web testing and validation by AI agents
- Performance analysis and optimization of web applications
- Debugging web applications through AI-powered inspection
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
chrome-devtools-mcp · Install
Installation
Add the following config to your MCP client:
{
"mcpServers": {
"chrome-devtools": {
"command": "npx",
"args": ["-y", "chrome-devtools-mcp@latest"]
}
}
}For basic browser tasks in headless mode:
{
"mcpServers": {
"chrome-devtools": {
"command": "npx",
"args": ["-y", "chrome-devtools-mcp@latest", "--slim", "--headless"]
}
}
}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": []
}
}