mcp-server-chart vs chatbot_Shopify
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | chatbot_Shopify by Mobeen-Dev | |
|---|---|---|
| Stars | ★ 4,068 | ★ 25 |
| 30d uses | 10,239 | — |
| Score | 84 | 43 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | E-commerceAI / LLM ToolsCommunication |
| Language | TypeScript | Python |
| Last commit | this month | 3 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
chatbot_Shopify · Summary
Shopify chatbot with MCP integration that uses AI-powered conversations and agentic capabilities for seamless e-commerce experiences.
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
chatbot_Shopify · Use cases
- Customer service automation for Shopify stores
- Intelligent product recommendations and discovery
- Shopping cart and checkout assistance
- Account management and order tracking
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"]
}
}
}chatbot_Shopify · Install
Installation
- Clone the repository:
git clone https://github.com/Mobeen-Dev/chatbot_Shopify.git
cd chatbot_Shopify- Set up environment variables:
cp credentials/.env.example credentials/.env
# Edit credentials/.env with your API keys and configuration- Set up prerequisites:
python -m ETL.pipeline --chunk_products --upload_chunks --start_embedding_job- Start with Docker Compose:
docker-compose build
docker-compose upClaude Desktop Configuration
To use this MCP server with Claude Desktop, add the following to your Claude Desktop config.json:
{
"mcpServers": {
"shopify-chatbot": {
"command": "python",
"args": ["path/to/chatbot_Shopify/src/server.py"],
"env": {
"OPENAI_API_KEY": "your_openai_api_key",
"SHOPIFY_API_KEY": "your_shopify_api_key",
"SHOPIFY_API_SECRET": "your_shopify_secret",
"SHOPIFY_STORE_URL": "your_store.myshopify.com"
}
}
}
}