mcp-server-chart vs aws-s3-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | aws-s3-mcp by samuraikun | |
|---|---|---|
| Stars | ★ 4,068 | ★ 24 |
| 30d uses | 10,239 | — |
| Score | 84 | 42 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Cloud StorageDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | TypeScript |
| 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.
aws-s3-mcp · Summary
A well-designed MCP server for AWS S3 integration with both HTTP and STDIO transport support.
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
aws-s3-mcp · Use cases
- Enabling LLMs to access and retrieve data from AWS S3 buckets
- Building applications that allow AI assistants to browse and process files stored in S3
- Creating MCP-based workflows that integrate S3 operations into AI agent behavior
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"]
}
}
}aws-s3-mcp · Install
Installation
- Install via npm:
npm install -g aws-s3-mcp- Configure AWS credentials (environment variables or .env file)
- Run with HTTP transport:
npx aws-s3-mcpOr with STDIO for Claude Desktop:
npx aws-s3-mcp --stdio- For Claude Desktop integration, add to config:
{
"mcpServers": {
"s3": {
"command": "npx",
"args": ["aws-s3-mcp", "--stdio"],
"env": {
"AWS_REGION": "us-east-1",
"S3_BUCKETS": "bucket1,bucket2,bucket3",
"AWS_ACCESS_KEY_ID": "your-access-key",
"AWS_SECRET_ACCESS_KEY": "your-secret-key"
}
}
}
}