mcp-server-chart vs XHS-Downloader
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | XHS-Downloader by JoeanAmier | |
|---|---|---|
| Stars | ★ 4,068 | ★ 11,172 |
| 30d uses | 10,239 | — |
| Score | 84 | 59 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | MediaWeb ScrapingDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
XHS-Downloader · Summary
XHS-Downloader is a MCP server for downloading content from XiaoHongShu (RedNote) platform with API and MCP capabilities.
mcp-server-chart · Use cases
- Data analysts creating visual reports from datasets
- AI assistants generating custom charts based on user requests
- Web applications embedding visualization capabilities via HTTP API
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
mcp-server-chart · Install
Installation
Install globally:
npm install -g @antv/mcp-server-chartFor Desktop Apps (e.g., Claude Desktop, VSCode):
{
"mcpServers": {
"mcp-server-chart": {
"command": "npx",
"args": ["-y", "@antv/mcp-server-chart"]
}
}
}For Windows:
{
"mcpServers": {
"mcp-server-chart": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
}
}
}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"
}
}
}
}