mcp-server-chart vs mcp-mail
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-server-chart by antvis | mcp-mail by shuakami | |
|---|---|---|
| Stars | ★ 4,068 | ★ 48 |
| 30天用量 | 10,239 | — |
| 综合分 | 84 | 42 |
| 官方 | — | — |
| 分类 | AI / LLM 工具开发者工具效率工具 | 沟通协作效率工具AI / LLM 工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 6 个月前 |
mcp-server-chart · 概述
使用 AntV 生成 26+ 种图表的 TypeScript MCP 服务器,支持多种图表类型和部署方式。
mcp-mail · 概述
基于 MCP 的智能邮件管理工具,可让 AI 处理邮件的发送、接收和组织等操作。
mcp-server-chart · 使用场景
- 数据分析师从数据集中创建可视化报告
- AI 助手根据用户请求生成自定义图表
- Web 应用通过 HTTP API 嵌入可视化功能
mcp-mail · 使用场景
- 自动化邮件回复和后续跟进
- 按内容或发件人搜索和组织邮件档案
- 从邮件历史中提取和管理联系人
mcp-server-chart · 安装
安装
全局安装:
npm install -g @antv/mcp-server-chart对于桌面应用(如 Claude Desktop、VSCode):
{
"mcpServers": {
"mcp-server-chart": {
"command": "npx",
"args": ["-y", "@antv/mcp-server-chart"]
}
}
}Windows 系统:
{
"mcpServers": {
"mcp-server-chart": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
}
}
}mcp-mail · 安装
安装
通过 Smithery 安装
npx -y @smithery/cli install @shuakami/mcp-mail --client claude手动安装
- 克隆并安装:
git clone https://github.com/shuakami/mcp-mail.git
cd mcp-mail
npm install
npm run build- 添加到 Claude MCP 配置文件 (
~/.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"
}
}
}
}