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 CeerDecy | |
|---|---|---|
| Stars | ★ 4,068 | ★ 0 |
| 30d uses | 10,239 | — |
| Score | 84 | 30 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | Rust |
| 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.
mcp-agent · Summary
A Rust framework for integrating MCP tools with LLM clients, handling tool integration and client management.
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 custom MCP tools that leverage LLM capabilities
- Creating applications that integrate multiple MCP servers with AI functionality
- Developing productivity tools that combine AI agents with file system operations
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
- Add to your
Cargo.toml:
# From crates.io
mcp-agent = "0.1.0"
# Or from GitHub
mcp-agent = { git = "https://github.com/CeerDecy/mcp-agent", branch = "main" }- Build the project:
cargo buildFor Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"mcp-agent": {
"command": "path/to/your/executable",
"args": []
}
}
}