mcp-server-chart vs vibe
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | vibe by mondaycom | |
|---|---|---|
| Stars | ★ 4,068 | ★ 645 |
| 30d uses | 10,239 | — |
| Score | 84 | 51 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM Tools |
| Language | TypeScript | TypeScript |
| 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.
vibe · Summary
MCP server for monday.com's Vibe Design System that helps discover component APIs and usage examples.
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
vibe · Use cases
- Discovering Vibe component APIs and properties
- Getting usage examples for specific components
- Finding appropriate icons for your application
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"]
}
}
}vibe · Install
To install the Vibe MCP server, follow the instructions in the [@vibe/mcp](https://github.com/mondaycom/vibe/blob/master/packages/mcp/README.md) documentation.
For Claude Desktop, add to your claude_desktop_config.json:
{
"mcpServers": {
"vibe": {
"command": "node",
"args": ["path/to/@vibe/mcp/dist/index.js"]
}
}
}