MCP Catalogs
Home

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 uses10,239
Score8439
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
CommunicationFile SystemProductivity
LanguageTypeScriptPython
Last committhis month13 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-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-server-email · Install

Installation

  1. Install dependencies:
pip install pydantic python-dotenv
  1. Create an email.json file with SMTP server configurations.
  1. 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"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.