mcp-server-chart vs mcp-server-weibo
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-server-weibo by qinyuanpei | |
|---|---|---|
| Stars | ★ 4,068 | ★ 45 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | social-mediaWeb ScrapingAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 2 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mcp-server-weibo · Summary
A robust MCP server providing Weibo social media data access with automatic authentication and both HTTP and stdio interfaces.
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
mcp-server-weibo · Use cases
- Enabling AI applications to analyze social media trends and public opinion
- Providing data sources for content analysis and research projects
- Integrating Weibo data into chatbots for social media interaction
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"]
}
}
}mcp-server-weibo · Install
Installation
**Using package manager (recommended):**
uvx install mcp-server-weibo**Using Docker:**
docker build -t mcp-server-weibo .
docker run -p 4200:4200 mcp-server-weibo http**From source:**
git clone https://github.com/qinyuanpei/mcp-server-weibo.git
cd mcp-server-weibo
uv pip install -e .**MCP Client Configuration (stdio mode):**
{
"mcpServers": {
"weibo": {
"command": "uvx",
"args": ["mcp-server-weibo"]
}
}
}**MCP Client Configuration (HTTP mode):**
{
"mcpServers": {
"weibo": {
"url": "http://localhost:4200/sse"
}
}
}