MCP Catalogs
Home

flyto-core vs xiaohongshu-mcp

Side-by-side comparison to help you pick between these two MCP servers.

flyto-core
by flytohub
xiaohongshu-mcp
by xpzouying
Stars★ 270★ 13,616
30d uses
Score5159
Official
Categories
Browser AutomationDeveloper ToolsWeb Scraping
social-mediaBrowser AutomationWeb Scraping
LanguagePythonGo
Last committhis monththis month

flyto-core · Summary

An MCP server for AI agent automation with 412 modules, execution tracing, replay functionality, and built-in recipes.

xiaohongshu-mcp · Summary

MCP server for automating Xiaohongshu operations including content posting, commenting, and user interaction.

flyto-core · Use cases

  • Competitive intelligence gathering through automated web scraping and performance monitoring
  • Automated testing of web applications with screenshot capture and performance metrics
  • Data extraction and transformation workflows across various web sources and APIs

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

flyto-core · Install

Install

pip install flyto-core            # Core engine + CLI + MCP server
pip install flyto-core[browser]   # + browser automation (Playwright)
playwright install chromium        # one-time browser setup

MCP Configuration

Add to your MCP config:

{
  "mcpServers": {
    "flyto-core": {
      "command": "python",
      "args": ["-m", "core.mcp_server"]
    }
  }
}

Or via Claude CLI:

claude mcp add flyto-core -- python -m core.mcp_server

xiaohongshu-mcp · Install

Installation Options

**Option 1: Download Precompiled Binary**

  1. Download the binary for your platform from [GitHub Releases](https://github.com/xpzouying/xiaohongshu-mcp/releases)
  2. Run the login tool first: chmod +x xiaohongshu-login-darwin-arm64 && ./xiaohongshu-login-darwin-arm64
  3. 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": []
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.