mcp-server-chart vs mcp-mindmesh
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-mindmesh by wheattoast11 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 1 |
| 30d uses | 10,239 | — |
| Score | 84 | 28 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | 14 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-mindmesh · Summary
An MCP server that orchestrates multiple Claude 3.7 Sonnet instances in a quantum-inspired swarm with field coherence optimization.
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-mindmesh · Use cases
- Complex problem analysis requiring multi-perspective reasoning
- Research and knowledge synthesis across specialized domains
- Enhanced decision making through ensemble intelligence
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-mindmesh · Install
Installation
- Clone the repository:
``bash git clone https://github.com/wheattoast11/mcp-mindmesh.git cd mcp-mindmesh ``
- Install dependencies:
``bash npm install ``
- Create and configure environment:
``bash cp .env.template .env # Edit .env with your API keys ``
- Build and start:
``bash npm run build npm start ``
For Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"mindmesh": {
"command": "node",
"args": ["dist/index.js"],
"env": {
"ANTHROPIC_API_KEY": "your-api-key"
}
}
}
}