mcp-server-chart vs Lambda-MCP-Server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | Lambda-MCP-Server by mikegc-aws | |
|---|---|---|
| Stars | ★ 4,068 | ★ 232 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsOps & InfraAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 11 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
Lambda-MCP-Server · Summary
AWS Lambda serverless MCP server implementation with session management and HTTP streaming 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
Lambda-MCP-Server · Use cases
- Deploying serverless MCP tools on AWS infrastructure
- Creating stateless AI applications with persistent session context
- Building scalable MCP endpoints for cloud-based AI workflows
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"]
}
}
}Lambda-MCP-Server · Install
Install via pip:
pip install awslabs.mcp_lambda_handlerFor Claude Desktop, add to your config.json:
{
"mcpServers": {
"lambda-mcp": {
"command": "python",
"args": ["-m", "awslabs.mcp_lambda_handler"],
"env": {
"AWS_ACCESS_KEY_ID": "YOUR_AWS_KEY",
"AWS_SECRET_ACCESS_KEY": "YOUR_AWS_SECRET"
}
}
}
}