mcp-server-chart vs Memory-Plus
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | Memory-Plus by Yuchen20 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 58 |
| 30d uses | 10,239 | — |
| Score | 84 | 43 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsKnowledge Graph |
| Language | TypeScript | Python |
| Last commit | this month | 12 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
Memory-Plus · Summary
Lightweight local RAG memory store for MCP agents with record, retrieve, update, and visualization features.
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
Memory-Plus · Use cases
- Enable AI coding assistants to remember project context across sessions
- Store and retrieve user preferences for personalized AI interactions
- Create knowledge graphs of ideas and concepts for better understanding
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"]
}
}
}Memory-Plus · Install
Installation
**Prerequisites:**
- Google API Key (for Gemini Embedding API)
- Obtain from [Google AI Studio](https://aistudio.google.com/apikey) - Set as GOOGLE_API_KEY in environment
**Setup with UV Runtime:**
# Install UV
pip install uv
# Add to VS Code/settings.json
{
"mcpServers": {
"memory-plus": {
"command": "uvx",
"args": [
"-q",
"memory-plus@latest"
],
"env": {
"GOOGLE_API_KEY": "<YOUR_API_KEY>"
}
}
}
}**One-Click VS Code Install:** [](https://insiders.vscode.dev/redirect/mcp/install?name=memory-plus&config=%7B%22command%22%3A%22uvx%22%2C%22args%22%3A%5B%22-q%22%2C%22memory-plus%40latest%22%5D%7D)