mcp-server-chart vs sample-agentic-ai-web
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | sample-agentic-ai-web by aws-samples | |
|---|---|---|
| Stars | ★ 4,068 | ★ 50 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Browser AutomationWeb ScrapingAI / LLM 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-web · Summary
Amazon Bedrock web automation assistant with MCP server for browser automation and vision capabilities.
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-web · Use cases
- Web scraping and data extraction
- Automated e-commerce product searches
- UI testing and website automation
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-web · Install
# Clone the repository
git clone https://github.com/aws-samples/sample-agentic-ai-web.git
cd sample-agentic-ai-web
# Install dependencies
pip install -r requirements.txt
# Run the MCP server
python 10-mcp-server.pyFor Claude Desktop configuration, add to claude_desktop_config.json:
{
"mcpServers": {
"bedrock-web-tools": {
"command": "python",
"args": ["path/to/10-mcp-server.py"]
}
}
}