mcp-server-chart vs Agent-Fusion
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | Agent-Fusion by krokozyab | |
|---|---|---|
| Stars | ★ 4,068 | ★ 66 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsFile SystemSearch |
| Language | TypeScript | Kotlin |
| Last commit | this month | 1 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
Agent-Fusion · Summary
Local RAG semantic search engine providing AI agents access to code, documentation and PDFs via MCP protocol.
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
Agent-Fusion · Use cases
- Enhancing AI coding assistants with context-aware codebase exploration
- Enabling document analysis and search across various file formats
- Facilitating multi-agent collaboration for complex development tasks
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"]
}
}
}Agent-Fusion · Install
Installation
Agent Fusion runs as a single JAR file with a TOML configuration file:
- Download the latest JAR from the [releases page](https://github.com/krokozyab/Agent-Fusion/releases)
- Create a
fusionagent.tomlconfiguration file - Run the JAR with Java:
java -jar agent-fusion.jar
Claude Desktop Configuration
Add to your Claude Desktop configuration:
{
"mcpServers": {
"agent-fusion": {
"command": "java",
"args": ["-jar", "/path/to/agent-fusion.jar"],
"env": {}
}
}
}The Context Engine will be available through the query_context tool.