mcp-server-chart vs agent-kit
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | agent-kit by KeyID-AI | |
|---|---|---|
| Stars | ★ 4,068 | ★ 689 |
| 30d uses | 10,239 | — |
| Score | 84 | 53 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | CommunicationProductivityAI / LLM Tools |
| Language | TypeScript | JavaScript |
| Last commit | this month | 2 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-kit · Summary
MCP email server with 27 tools for inbox, sending, contacts and auto-reply functionality.
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-kit · Use cases
- AI agents autonomously managing email communications and responses
- Building email-enabled chatbots that can send and receive messages
- Automating email workflows with scheduled delivery and auto-reply features
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-kit · Install
Install
npm install @keyid/agent-kit
# or
yarn add @keyid/agent-kitWith Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"keyid": {
"command": "npx",
"args": ["@keyid/agent-kit"],
"env": {
"KEYID_PUBLIC_KEY": "...hex...",
"KEYID_PRIVATE_KEY": "...hex..."
}
}
}
}