mcp-server-chart vs pluggedin-app
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | pluggedin-app by VeriTeknik | |
|---|---|---|
| Stars | ★ 4,068 | ★ 94 |
| 30d uses | 10,239 | — |
| Score | 84 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| 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.
pluggedin-app · Summary
A unified, self-hostable web interface for discovering, configuring, and managing MCP servers.
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
pluggedin-app · Use cases
- Centralizing AI conversations and knowledge from multiple AI models and platforms
- Managing and versioning AI-generated content with proper attribution
- Providing a unified interface for accessing and configuring MCP servers across different AI clients
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"]
}
}
}pluggedin-app · Install
Docker Installation (Recommended)
git clone https://github.com/VeriTeknik/pluggedin-app.git
cd pluggedin-app
cp .env.example .env
docker compose up --build -dVisit http://localhost:12005 after installation.
Claude Desktop Integration
Add the following to Claude Desktop's claude_desktop_config.json:
{
"mcpServers": {
"pluggedin": {
"command": "docker",
"args": ["run", "--rm", "-i", "veriteknik/pluggedin:latest", "mcp"]
}
}
}