mcp-server-chart vs agent-inbox
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | agent-inbox by gsd-build | |
|---|---|---|
| Stars | ★ 4,068 | ★ 42 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | CommunicationDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | JavaScript |
| 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.
agent-inbox · Summary
MCP server providing temporary email addresses for AI agents to handle email verification and auth flows automatically.
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
agent-inbox · Use cases
- Automated account registration for services requiring email verification
- Testing email-based authentication flows in development environments
- AI agent testing of sign-up workflows without human intervention
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"]
}
}
}agent-inbox · Install
Install
npx gsd-agent-inboxThe interactive installer auto-detects your AI coding agents (Claude Code, Codex CLI, Cursor, Gemini CLI, Windsurf) and configures the MCP server automatically.
Manual Setup for Claude Desktop
Add to ~/.claude/settings.json:
{
"mcpServers": {
"agent-inbox": {
"command": "npx",
"args": ["-y", "gsd-agent-inbox"]
}
}
}