MCP Catalogs
Home

MCP-Dandan vs mcp-server-chart

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

MCP-Dandan
by 82ch
mcp-server-chart
by antvis
Stars★ 63★ 4,068
30d uses10,239
Score4584
Official
Categories
SecurityAI / LLM ToolsMonitoring
AI / LLM ToolsDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit5 mo agothis month

MCP-Dandan · Summary

MCP-Dandan is a security monitoring framework that intercepts and analyzes MCP communications in real-time to detect malicious behavior.

mcp-server-chart · Summary

A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.

MCP-Dandan · Use cases

  • Security monitoring for AI applications using MCP protocol
  • Detection of malicious tool calls and data exfiltration attempts
  • Real-time protection against command injection in agentic systems

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

Installation

# Clone the repository
git clone https://github.com/82ch/MCP-Dandan.git
cd MCP-Dandan

# Install all dependencies (Python + Node.js)
npm run install-all

Running the Application

# Start both server and desktop UI
npm run dev

The server will start on http://127.0.0.1:8282 and the Electron desktop app will launch automatically.

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "mcp-dandan": {
      "command": "python",
      "args": ["path/to/mcp-dandan/server.py"]
    }
  }
}

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"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.