XHS-Downloader vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
XHS-Downloader by JoeanAmier | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 11,172 | ★ 85,748 |
| 30d uses | — | — |
| Score | 59 | 77 |
| Official | — | ✓ |
| Categories | MediaWeb ScrapingDeveloper Tools | File SystemDeveloper ToolsProductivity |
| 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.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
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
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
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"
}
}
}
}filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.