mcp-server-chart vs solon-ai
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | solon-ai by opensolon | |
|---|---|---|
| Stars | ★ 4,068 | ★ 385 |
| 30d uses | 10,239 | — |
| Score | 84 | 50 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsOther |
| Language | TypeScript | Java |
| 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.
solon-ai · Summary
Solon-AI is a Java framework for building AI applications with MCP integration, supporting various LLM providers and multi-agent systems.
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
solon-ai · Use cases
- Building autonomous agents with tool integration
- Developing RAG-based knowledge bases
- Creating multi-agent collaborative 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"]
}
}
}solon-ai · Install
Installation
- Add Solon-AI to your Maven project:
<dependency>
<groupId>org.noear</groupId>
<artifactId>solon-ai</artifactId>
<version>latest</version>
</dependency>- For Claude Desktop MCP integration, add to
claude_desktop_config.json:
{
"mcpServers": {
"solon-ai": {
"command": "java",
"args": ["-jar", "path/to/solon-ai-mcp.jar"],
"env": {}
}
}
}