memory-bank-mcp vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
memory-bank-mcp by alioshr | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 904 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 49 | 84 |
| Official | — | — |
| Categories | AI / LLM ToolsProductivityDeveloper Tools | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 9 mo ago | this month |
memory-bank-mcp · Summary
A TypeScript MCP server for centralized remote memory bank management across multiple projects.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
memory-bank-mcp · Use cases
- Managing persistent memory for AI assistants across multiple projects
- Centralizing knowledge bases for development teams working on different repositories
- Creating a shared memory resource that AI models can access regardless of the client application
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-bank-mcp · Install
Installation
Automatic Installation with Smithery
npx -y @smithery/cli install @alioshr/memory-bank-mcp --client claudeManual Configuration
For Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
"allPepper-memory-bank": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@allpepper/memory-bank-mcp@latest"],
"env": {
"MEMORY_BANK_ROOT": "YOUR_PATH"
}
}For Cursor
Settings → Features → Add MCP Server:
env MEMORY_BANK_ROOT=<path-to-bank> npx -y @allpepper/memory-bank-mcp@latestmcp-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"]
}
}
}