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 uses | 10,239 | — |
| Score | 84 | 37 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | CommunicationDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 9 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-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-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 buildLegacy 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.