mcp-server-chart vs web-agent-protocol
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | web-agent-protocol by OTA-Tech-AI | |
|---|---|---|
| Stars | ★ 4,068 | ★ 497 |
| 30d uses | 10,239 | — |
| Score | 84 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Browser AutomationWeb ScrapingAI / 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.
web-agent-protocol · Summary
Web Agent Protocol (WAP) records browser interactions and converts them into MCP servers for web automation replay.
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
web-agent-protocol · Use cases
- Automating repetitive web tasks by recording and replaying user interactions
- Creating MCP servers from browser workflows for AI agent automation
- Testing web applications by replaying exact user interaction sequences
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"]
}
}
}web-agent-protocol · Install
# Install dependencies
conda create -n WAP python=3.11
conda activate WAP
pip install -r requirements.txt
# Set environment variables
set PYTHONPATH=/path/to/webagentprotocol # Windows
export PYTHONPATH=/path/to/webagentprotocol # Linux
# Create .env file with API keys
OPENAI_API_KEY=sk-proj-...
DEEPSEEK_API_KEY=sk-...
# Install Chrome extension
# See https://github.com/OTA-Tech-AI/webagentprotocol/tree/main/chrome-extensionFor Claude Desktop integration, add to claude_desktop_config.json:
{
"mcpServers": {
"wap": {
"command": "python",
"args": ["/path/to/webagentprotocol/wap_service.py"]
}
}
}```