mcp-server-chart vs yantrikdb-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | yantrikdb-server by yantrikos | |
|---|---|---|
| Stars | ★ 4,068 | ★ 143 |
| 30d uses | 10,239 | — |
| Score | 84 | 50 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsKnowledge GraphDatabase |
| Language | TypeScript | Rust |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
yantrikdb-server · Summary
Cognitive memory database for AI agents that consolidates duplicates, detects contradictions, and fades stale memories via temporal decay.
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
yantrikdb-server · Use cases
- Long-term memory management for AI agents to avoid context window overflow
- Conflict detection and resolution in multi-conversation AI systems
- Personalized AI assistants that learn user preferences over time
- Knowledge consolidation for enterprise document management systems
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"]
}
}
}yantrikdb-server · Install
Quick Start with MCP
pip install yantrikdb-mcpAdd to your MCP client config (typically ~/.claude.json or .mcp.json):
{
"mcpServers": {
"yantrikdb": {
"command": "yantrikdb-mcp"
}
}
}For shared memory across machines:
{
"mcpServers": {
"yantrikdb": {
"command": "yantrikdb-mcp",
"env": {
"YANTRIKDB_SERVER_URL": "http://node1:7438,http://node2:7438",
"YANTRIKDB_TOKEN": "ydb_your_database_token"
}
}
}
}As a Network Server
docker run -p 7438:7438 ghcr.io/yantrikos/yantrikdb:latest