mcp-server-chart vs loopin-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | loopin-mcp by nicholasemccormick | |
|---|---|---|
| Stars | ★ 4,068 | ★ 0 |
| 30d uses | 10,239 | — |
| Score | 84 | 36 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| 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.
loopin-mcp · Summary
LoopIn is an MCP server providing human-in-the-loop interrupt API for AI agents to request human review at critical decision points.
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
loopin-mcp · Use cases
- AI agents seeking human approval for financial transactions before execution
- Autonomous systems requiring human review for potentially risky operations
- Teams implementing human oversight in automated decision-making workflows
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"]
}
}
}loopin-mcp · Install
Install LoopIn MCP server via npm:
npm install -g @colossal-api/loopin-mcpConfigure in Claude Desktop:
{
"mcpServers": {
"loopin": {
"command": "npx",
"args": ["-y", "@colossal-api/loopin-mcp"],
"env": {
"LOOPIN_API_URL": "https://your-loopin-instance.railway.app",
"LOOPIN_API_KEY": "your-key"
}
}
}
}