mcp-server-chart vs eShopLite
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | eShopLite by Azure-Samples | |
|---|---|---|
| Stars | ★ 4,068 | ★ 162 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsE-commerceDeveloper Tools |
| Language | TypeScript | C# |
| 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.
eShopLite · Summary
eShopLite is an .NET e-commerce reference app with integrated MCP server for AI interactions.
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
eShopLite · Use cases
- Enabling AI agents to perform e-commerce operations through MCP
- Building semantic search capabilities for product catalogs
- Creating real-time audio-based shopping assistance
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"]
}
}
}eShopLite · Install
- Clone the repository:
git clone https://github.com/Azure-Samples/eShopLite.git - Navigate to the MCP scenario directory:
cd eShopLite/scenarios/06-mcp/ - Follow the scenario-specific README for detailed setup instructions
For Claude Desktop integration, add this to your config.json:
{
"mcpServers": {
"eshoplite": {
"command": "dotnet",
"args": ["run", "--project", "./path/to/eShopLite/scenarios/06-mcp/"],
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
}