mcp-server-chart vs woocommerce-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | woocommerce-mcp-server by techspawn | |
|---|---|---|
| Stars | ★ 4,068 | ★ 89 |
| 30d uses | 10,239 | — |
| Score | 84 | 44 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | E-commerceDeveloper ToolsProductivity |
| Language | TypeScript | JavaScript |
| Last commit | this month | 6 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
woocommerce-mcp-server · Summary
A comprehensive MCP server for WooCommerce integration with WordPress REST API, covering products, orders, customers, and store management.
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
woocommerce-mcp-server · Use cases
- Automate WooCommerce store management through AI assistants
- Create shopping experiences in AI applications connected to WooCommerce
- Sync product information and orders between WooCommerce and other systems
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"]
}
}
}woocommerce-mcp-server · Install
Installation
- Clone the repository
- Install dependencies:
npm install- Build the project:
npm run buildConfiguration
Add the server to your MCP settings file with environment variables:
{
"mcpServers": {
"woocommerce": {
"command": "node",
"args": ["path/to/build/index.js"],
"env": {
"WORDPRESS_SITE_URL": "https://your-wordpress-site.com",
"WOOCOMMERCE_CONSUMER_KEY": "your-woocommerce-consumer-key",
"WOOCOMMERCE_CONSUMER_SECRET": "your-woocommerce-consumer-secret",
"WORDPRESS_USERNAME": "your-wordpress-username",
"WORDPRESS_PASSWORD": "your-wordpress-password"
}
}
}
}