mcp-server-chart vs mcp-server-email
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-server-email by Shy2593666979 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 76 |
| 30d uses | 10,239 | — |
| Score | 84 | 39 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | CommunicationFile SystemProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 13 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-server-email · Summary
MCP server for sending emails with attachments and searching files in directories.
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-server-email · Use cases
- Automating email sending from LLM-based applications
- Searching for specific attachments in directories
- Integrating email functionality into AI-powered workflows
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"]
}
}
}mcp-server-email · Install
Installation
- Install dependencies:
pip install pydantic python-dotenv- Create an
email.jsonfile with SMTP server configurations.
- Run the server:
python -m mcp_email_server (--dir /path/to/attachment/directory)For Claude Desktop, add to your settings:
{
"mcpServers": {
"email": {
"command": "python",
"args": [
"path/to/mcp_server_email",
"--dir",
"/path/to/attachment/directory"
],
"env": {
"SENDER": "your_email@gmail.com",
"PASSWORD": "your_app_password"
}
}
}
}