Zikkaron vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
Zikkaron by amanhij | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 59 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 48 | 84 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsKnowledge Graph | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this month |
Zikkaron · Summary
Biologically-inspired persistent memory engine for Claude Code with 26 cognitive subsystems, local SQLite storage, and advanced memory recall capabilities.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
Zikkaron · Use cases
- Long-term code projects where context needs to persist across sessions
- Complex debugging sessions where Claude needs to remember previous approaches
- Multi-session development where architectural decisions must be preserved
- Teams working on shared codebases with consistent implementation patterns
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
Zikkaron · Install
pip install zikkaronAdd to your Claude Code config:
{
"mcpServers": {
"zikkaron": {
"command": "zikkaron"
}
}
}Tell Claude how to use it by adding instructions to your global ~/.claude/CLAUDE.md:
## Memory
- On every new session, call `recall` with the current project name
- Before starting any task, call `get_project_context` for the current directory
- After completing significant work, call `remember` to store decisions and outcomesmcp-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"]
}
}
}