MCP Catalogs
Home

mcp-server-chart vs mcp-notifications

Side-by-side comparison to help you pick between these two MCP servers.

mcp-server-chart
by antvis
mcp-notifications
by zudsniper
Stars★ 4,068★ 6
30d uses10,239
Score8437
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
CommunicationDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis month9 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-notifications · Summary

MCP server for real-time notifications and webhooks when AI agents complete tasks.

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-notifications · Use cases

  • Receiving notifications when AI assistants finish tasks in Cursor or other AI tools
  • Setting up cross-platform alerts to Slack, Discord, or Teams for AI agent activities
  • Creating a notification system for AI workflows across multiple development projects

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-notifications · Install

# Clone the repository
git clone https://github.com/zudsniper/mcp-notifications.git
cd mcp-notifications

# Install dependencies
npm install

# Build the package
npm run build

Legacy MCP Server Integration

For Claude Desktop, add to your claude_desktop_config.json:

{
   "mcpServers": {
      "notifier": {
         "command": "node",
         "args": [
            "/path/to/legacy/build/index.js"
         ],
         "env": {
            "WEBHOOK_URL": "https://ntfy.sh/webhook-url-example",
            "WEBHOOK_TYPE": "ntfy"
         }
      }
   }
}

For the new SSE-based system, deploy to Cloudflare Workers and configure your AI tools to connect to the SSE endpoint.

Comparison generated from public README + GitHub signals. Last updated automatically.