mcp-server-chart vs mcp-duckdb-memory-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-duckdb-memory-server by IzumiSy | |
|---|---|---|
| Stars | ★ 4,068 | ★ 57 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Knowledge GraphDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 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-duckdb-memory-server · Summary
A production-ready MCP memory server using DuckDB as backend for knowledge graph storage and retrieval.
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-duckdb-memory-server · Use cases
- Building persistent memory for AI assistants
- Creating knowledge graphs for personal information management
- Enhancing chatbot capabilities with relational data storage
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-duckdb-memory-server · Install
Installation
Via Smithery
npx -y @smithery/cli install @IzumiSy/mcp-duckdb-memory-server --client claudeManual Install
Add to claude_desktop_config.json:
{
"mcpServers": {
"graph-memory": {
"command": "npx",
"args": [
"-y",
"@izumisy/mcp-duckdb-memory-server"
],
"env": {
"MEMORY_FILE_PATH": "/path/to/your/memory.data"
}
}
}
}Docker
docker build -t mcp-duckdb-graph-memory .
docker run -dit mcp-duckdb-graph-memory