mcp-server-chart vs memento-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | memento-mcp by gannonh | |
|---|---|---|
| Stars | ★ 4,068 | ★ 418 |
| 30d uses | 10,239 | — |
| Score | 84 | 49 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Knowledge GraphAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 7 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
memento-mcp · Summary
Knowledge graph memory system with semantic retrieval and temporal awareness for LLMs.
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
memento-mcp · Use cases
- Building persistent memory for AI assistants to remember user preferences and context
- Creating knowledge bases that evolve over time with confidence tracking
- Implementing semantic search capabilities for LLM applications
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"]
}
}
}memento-mcp · Install
Installation
Prerequisites
- Neo4j 5.13+
Setup Options
Neo4j Desktop Setup (Recommended)
- Download and install Neo4j Desktop
- Create a new project
- Add a new database
- Set password to
memento_password - Start the database
Docker Setup
docker-compose up -d neo4jMCP Configuration
Add to Claude Desktop config:
{
"mcpServers": {
"memento": {
"command": "npx",
"args": ["-y", "@gannonh/memento-mcp"]
}
}
}