mcp-server-chart vs mcp-agent
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-agent by lastmile-ai | |
|---|---|---|
| Stars | ★ 4,068 | ★ 8,325 |
| 30d uses | 10,239 | — |
| Score | 84 | 59 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 4 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-agent · Summary
A comprehensive Python framework for building effective agents with Model Context Protocol and simple workflow patterns.
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-agent · Use cases
- Building complex multi-step agents that use MCP servers to interact with filesystems, web APIs, and other systems
- Creating durable, stateful agents with Temporal for production workloads
- Deploying agents as MCP servers that can be integrated into other systems
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-agent · Install
Installation
Install with pip:
pip install mcp-agentOr using uv (recommended):
uv add mcp-agentFor additional LLM providers:
uv add "mcp-agent[openai, anthropic, google, azure, bedrock]"Claude Desktop Integration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"mcp-agent": {
"command": "uvx",
"args": ["mcp-agent", "run"]
}
}
}