agentgate vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
agentgate by agentkitai | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 27 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 44 | 84 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsSecurity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 2 mo ago | this month |
agentgate · Summary
Human-in-the-loop approval system for AI agents with MCP integration and policy-based decision routing.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
agentgate · Use cases
- AI agent requiring approval before sending emails to customers
- Automated system needing human confirmation before making production changes
- Multi-agent coordination where actions need oversight from different teams
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
agentgate · Install
Installation
- Install dependencies:
pnpm install- Run database migrations:
pnpm --filter @agentgate/server db:migrate- Bootstrap (create admin API key):
pnpm --filter @agentgate/server bootstrap- Start the development environment:
pnpm devClaude Desktop Integration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"agentgate": {
"command": "npx",
"args": ["@agentgate/mcp"],
"env": {
"AGENTGATE_URL": "http://localhost:3000",
"AGENTGATE_API_KEY": "agk_..."
}
}
}
}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"]
}
}
}