mcp-server-chart vs email-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | email-mcp by codefuturist | |
|---|---|---|
| Stars | ★ 4,068 | ★ 45 |
| 30d uses | 10,239 | — |
| Score | 84 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | CommunicationProductivityAI / LLM Tools |
| 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.
email-mcp · Summary
Full-featured MCP email server with IMAP/SMTP support, OAuth2, and AI-powered triage across multiple accounts.
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
email-mcp · Use cases
- AI assistants reading and responding to emails on behalf of users
- Automated email management and triage based on custom rules
- Cross-account email management from a single interface
- Scheduling future emails and calendar event extraction
- Email analytics and organization at scale
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"]
}
}
}email-mcp · Install
Installation
Quick Setup
# Run directly
npx @codefuturist/email-mcp setup
# Or install globally
npm install -g @codefuturist/email-mcpDocker
docker pull ghcr.io/codefuturist/email-mcp:latestClaude Desktop Configuration
{
"mcpServers": {
"email": {
"command": "npx",
"args": ["-y", "@codefuturist/email-mcp", "stdio"]
}
}
}Environment Variables (Single Account)
{
"mcpServers": {
"email": {
"command": "npx",
"args": ["-y", "@codefuturist/email-mcp", "stdio"],
"env": {
"MCP_EMAIL_ADDRESS": "you@gmail.com",
"MCP_EMAIL_PASSWORD": "your-app-password",
"MCP_EMAIL_IMAP_HOST": "imap.gmail.com",
"MCP_EMAIL_SMTP_HOST": "smtp.gmail.com"
}
}
}
}