mcp-server-chart vs openagent
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | openagent by the-open-agent | |
|---|---|---|
| Stars | ★ 4,068 | ★ 4,760 |
| 30d uses | 10,239 | — |
| Score | 84 | 58 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | Go |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
openagent · Summary
OpenAgent is a comprehensive AI assistant platform supporting MCP tool integration and agent automation.
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
openagent · Use cases
- Automating web scraping and data collection
- Building custom AI assistants with domain-specific knowledge
- Creating autonomous workflows for office 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"]
}
}
}openagent · Install
Installation
Quick Install
**macOS / Linux / WSL**
curl -fsSL https://raw.githubusercontent.com/the-open-agent/openagent/master/scripts/install.sh | bash**Windows (PowerShell)**
irm https://raw.githubusercontent.com/the-open-agent/openagent/master/scripts/install.ps1 | iexFrom Source
# Backend
go build
# Frontend
cd web && yarn install && yarn startMCP Integration in Claude Desktop
Add to your Claude Desktop config.json:
"mcpServers": {
"openagent": {
"command": "path/to/openagent",
"args": ["--mcp"]
}
}