mcp-server-chart vs wenyan-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | wenyan-mcp by caol64 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 1,225 |
| 30d uses | 10,239 | — |
| Score | 84 | 53 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | ProductivityAI / LLM ToolsCommunication |
| Language | TypeScript | JavaScript |
| Last commit | this month | 1 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
wenyan-mcp · Summary
Wenyan MCP Server enables AI to automatically format Markdown and publish to WeChat Official Accounts.
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
wenyan-mcp · Use cases
- AI-assisted content creation with automatic formatting for WeChat Official Accounts
- Automated publishing workflow using AI agents and MCP tools
- Multi-account management for team-based content publishing
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"]
}
}
}wenyan-mcp · Install
Installation
npm install -g @wenyan-md/mcpClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"wenyan-mcp": {
"command": "wenyan-mcp",
"env": {
"WECHAT_APP_ID": "your_app_id",
"WECHAT_APP_SECRET": "your_app_secret"
}
}
}
}Server Mode Configuration
For remote publishing:
{
"mcpServers": {
"wenyan-mcp": {
"command": "wenyan-mcp",
"args": ["--server", "https://api.example.com", "--api-key", "your-api-key"]
}
}
}