mcp-server-chart vs erickwendel-contributions-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | erickwendel-contributions-mcp by ErickWendel | |
|---|---|---|
| Stars | ★ 4,068 | ★ 232 |
| 30d uses | 10,239 | — |
| Score | 84 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | 4 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
erickwendel-contributions-mcp · Summary
A TypeScript MCP server providing tools to query Erick Wendel's contributions across different platforms with full 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
erickwendel-contributions-mcp · Use cases
- Querying technical talks by year, language, or location
- Finding blog posts about specific topics like WebXR
- Accessing content statistics and generating activity summaries
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"]
}
}
}erickwendel-contributions-mcp · Install
Quick Start with Claude Desktop
Add this configuration to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"erickwendel-contributions": {
"command": "npx",
"args": ["-y", "@erickwendel/contributions-mcp"]
}
}
}Local Development
- Clone the repository and install dependencies:
git clone https://github.com/ErickWendel/erickwendel-contributions-mcp.git
cd erickwendel-contributions-mcp
npm ci- Add this configuration for local development:
{
"mcpServers": {
"erickwendel-contributions": {
"command": "node",
"args": ["--experimental-strip-types", "ABSOLUTE_PATH_TO_PROJECT/src/index.ts"]
}
}
}