mcp-server-chart vs mcp-memory
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-memory by Puliczek | |
|---|---|---|
| Stars | ★ 4,068 | ★ 143 |
| 30d uses | 10,239 | — |
| Score | 84 | 42 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsKnowledge Graph |
| Language | TypeScript | HTML |
| Last commit | this month | 13 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-memory · Summary
MCP Memory server that enables cross-conversation user memory using vector search technology on Cloudflare infrastructure.
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-memory · Use cases
- Personalizing AI assistant responses based on user preferences and history
- Building long-term contextual awareness for chat applications
- Creating knowledge bases that persist across multiple sessions
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-memory · Install
Installation Options
Option 1: One-Click Deploy
Click the deploy button and choose:
- Dimensions: 1024
- Metric: cosine
Option 2: Using the Template
- Click 'Use this template' button
- Clone the new repository
- Follow setup instructions
Option 3: Cloudflare CLI
npm create cloudflare@latest --git https://github.com/puliczek/mcp-memorySetup (Options 2 & 3)
- Install dependencies:
npm install- Create Vectorize index:
npx wrangler vectorize create mcp-memory-vectorize --dimensions 1024 --metric cosine- Run locally:
npm run dev- Deploy:
npm run deployClaude Desktop Configuration
Add to Claude Desktop config.json:
{
"mcpServers": {
"mcp-memory": {
"command": "npx",
"args": ["@puliczek/mcp-memory"]
}
}
}