mcp-server-chart vs sample-agentic-ai-demos
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | sample-agentic-ai-demos by aws-samples | |
|---|---|---|
| Stars | ★ 4,068 | ★ 101 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsOps & InfraDeveloper Tools |
| 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.
sample-agentic-ai-demos · Summary
AWS collection of MCP examples demonstrating client-server interactions with AWS services.
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
sample-agentic-ai-demos · Use cases
- Building MCP servers on AWS infrastructure (ECS) for production deployments
- Creating MCP clients that interact with AWS Bedrock for agentic AI applications
- Implementing RAG systems using MCP to manage external data sources
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"]
}
}
}sample-agentic-ai-demos · Install
These examples have varying installation requirements based on the specific module. Generally, they require:
- AWS account with necessary permissions
- Docker (for containerized examples)
- Python 3.7+ or Java/Kotlin for respective modules
For Claude Desktop integration, you would add to config.json:
{
"mcpServers": {
"aws-mcp-demo": {
"command": "python",
"args": ["path/to/mcp/server.py"]
}
}
}