MCP Catalogs
Home

mcp-server-chart vs mcp-mail

Side-by-side comparison to help you pick between these two MCP servers.

mcp-server-chart
by antvis
mcp-mail
by shuakami
Stars★ 4,068★ 48
30d uses10,239
Score8442
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
CommunicationProductivityAI / LLM Tools
LanguageTypeScriptTypeScript
Last committhis month6 mo ago

mcp-server-chart · Summary

A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.

mcp-mail · Summary

MCP-based email management tool enabling AI to handle various email operations including sending, receiving, and organizing emails.

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

mcp-mail · Use cases

  • Automate email responses and follow-ups
  • Search and organize email archives by content or sender
  • Extract and manage contacts from email history

mcp-server-chart · Install

Installation

Install globally:

npm install -g @antv/mcp-server-chart

For 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"]
    }
  }
}

mcp-mail · Install

Installation

Via Smithery

npx -y @smithery/cli install @shuakami/mcp-mail --client claude

Manual Installation

  1. Clone and install:
git clone https://github.com/shuakami/mcp-mail.git
cd mcp-mail
npm install
npm run build
  1. Add to Claude Desktop MCP configuration (~/.cursor/mcp.json):
{
  "mcpServers": {
    "mail-mcp": {
      "command": "pythonw",
      "args": [
        "/Users/你的用户名/mcp-mail/bridging_mail_mcp.py"
      ],
      "env": {
        "SMTP_HOST": "smtp.qq.com",
        "SMTP_PORT": "465",
        "SMTP_SECURE": "true",
        "SMTP_USER": "your.email@qq.com",
        "SMTP_PASS": "your-app-specific-password",
        "IMAP_HOST": "imap.qq.com",
        "IMAP_PORT": "993",
        "IMAP_SECURE": "true",
        "IMAP_USER": "your.email@qq.com",
        "IMAP_PASS": "your-app-specific-password",
        "DEFAULT_FROM_NAME": "Your Name",
        "DEFAULT_FROM_EMAIL": "your.email@qq.com"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.