mcp-server-chart vs mcp-email-client
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-email-client by gamalan | |
|---|---|---|
| Stars | ★ 4,068 | ★ 17 |
| 30d uses | 10,239 | — |
| Score | 84 | 34 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | CommunicationProductivityDeveloper Tools |
| 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-email-client · Summary
Python-based email client MCP server for managing multiple email configurations and operations.
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-email-client · Use cases
- Automating email responses through AI assistants
- Managing multiple email accounts from a single interface
- Integrating email operations 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-email-client · Install
Installation
- Clone the repository:
git clone https://github.com/gamalan/mcp-email-client.git
cd mcp-email-client- Install uv:
**Linux/MacOS**
curl -LsSf https://astral.sh/uv/install.sh | sh**Windows**
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"- Install dependencies:
uv syncConfiguration
Add to Claude Desktop configuration:
{
"mcpServers": {
"mcp_email_client": {
"command": "uv",
"args": [
"run",
"--directory",
"D:\\Project\\RepoPath",
"mcp_email_client"
]
}
}
}Or in VSCode:
{
"servers": {
"any-name": {
"type": "stdio",
"command": "/path/to/uv",
"args": [
"run",
"--directory",
"/path/to/repo",
"run_mcp_server.py",
]
}
}
}