mcp-server-chart vs mcp-aoai-web-browsing
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-aoai-web-browsing by kimtth | |
|---|---|---|
| Stars | ★ 4,068 | ★ 33 |
| 30d uses | 10,239 | — |
| Score | 84 | 41 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Browser AutomationWeb ScrapingDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 2 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mcp-aoai-web-browsing · Summary
MCP server with Playwright browser automation via FastMCP, supporting both Azure and OpenAI APIs.
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
mcp-aoai-web-browsing · Use cases
- Web automation and testing through LLM interactions
- Browser-based data extraction and analysis
- AI-powered web navigation 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"]
}
}
}mcp-aoai-web-browsing · Install
# Install uv for dependency management
pip install uv
# Install dependencies
uv sync
# Run the application
python chatgui.pyFor Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"browser-navigator": {
"command": "uv",
"args": ["run", "fastmcp", "run", "./server/browser_navigator_server.py:app"],
"cwd": "/path/to/mcp-aoai-web-browsing",
"env": {
"AZURE_OPEN_AI_ENDPOINT": "...",
"AZURE_OPEN_AI_API_KEY": "...",
"AZURE_OPEN_AI_DEPLOYMENT_MODEL": "...",
"AZURE_OPEN_AI_API_VERSION": "..."
}
}
}
}