protonmail-mcp vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
protonmail-mcp by amotivv | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 41 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 39 | 84 |
| Official | — | — |
| Categories | CommunicationDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | JavaScript | TypeScript |
| Last commit | 14 mo ago | this month |
protonmail-mcp · Summary
Protonmail MCP server enables email sending through Protonmail's SMTP service for Claude and Cline.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
protonmail-mcp · Use cases
- Automated email notifications from Claude AI agents
- Send reports and summaries directly from development workflows
- Integrate email functionality into Cline-powered development environments
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
protonmail-mcp · Install
Installation
Manual Installation
- Clone the repository:
git clone https://github.com/amotivv/protonmail-mcp.git
cd protonmail-mcp- Install dependencies and build:
npm install
npm run build- Add to Claude Desktop configuration:
{
"mcpServers": {
"protonmail": {
"command": "node",
"args": ["/path/to/protonmail-mcp/build/index.js"]
}
}
}- Set environment variables in your config file as described in the README.
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"]
}
}
}