XHS-Downloader vs everything
Side-by-side comparison to help you pick between these two MCP servers.
XHS-Downloader by JoeanAmier | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 11,172 | ★ 85,748 |
| 30d uses | — | — |
| Score | 59 | 77 |
| Official | — | ✓ |
| Categories | MediaWeb ScrapingDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | this month | this month |
XHS-Downloader · Summary
XHS-Downloader is a MCP server for downloading content from XiaoHongShu (RedNote) platform with API and MCP capabilities.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
XHS-Downloader · Use cases
- Automatically downloading XiaoHongShu content for personal archiving
- Building applications that integrate with XiaoHongShu content through MCP protocol
- Batch processing of XiaoHongShu content with API calls
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
XHS-Downloader · Install
Installation
- **Docker (Recommended)**
``bash docker pull joeanamier/xhs-downloader docker run -p 5556:5556 -v xhs_downloader_volume:/app/Volume -it joeanamier/xhs-downloader python main.py mcp ``
- **From Source**
``bash git clone https://github.com/JoeanAmier/XHS-Downloader.git cd XHS-Downloader pip install -r requirements.txt python main.py mcp ``
**Claude Desktop Configuration**: Add to your claude_desktop_config.json:
{
"mcpServers": {
"xhs-downloader": {
"command": "python",
"args": ["path/to/main.py", "mcp"],
"env": {
"PYTHONPATH": "path/to/repo"
}
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything