MegaMemory vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
MegaMemory by 0xK3vin | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 168 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 50 | 84 |
| Official | — | — |
| Categories | Knowledge GraphDeveloper ToolsAI / LLM Tools | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
MegaMemory · Summary
MegaMemory is an MCP server that creates persistent project knowledge graphs with semantic search for coding agents.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
MegaMemory · Use cases
- Long-term codebase maintenance with persistent architectural understanding
- Team collaboration with shared knowledge graphs across branches
- IDE/editor integration for context-aware coding assistance
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
MegaMemory · Install
Installation
npm install -g megamemoryFor Claude Desktop
Add to Claude Desktop configuration:
{
"mcpServers": {
"megamemory": {
"command": "megamemory",
"args": []
}
}
}For Other MCP Clients
megamemory install --target <client-name>Where client-name can be opencode, claudecode, antigravity, or codex.
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"]
}
}
}