mcp-server-chart vs remember-mcp-vscode
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | remember-mcp-vscode by NiclasOlofsson | |
|---|---|---|
| Stars | ★ 4,068 | ★ 5 |
| 30d uses | 10,239 | — |
| Score | 84 | 37 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 9 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
remember-mcp-vscode · Summary
VS Code extension that brings persistent memory to your AI assistant through MCP integration.
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
remember-mcp-vscode · Use cases
- Personal AI memory for coding preferences and habits
- Team knowledge sharing for onboarding and coding conventions
- Monitoring GitHub Copilot usage and managing costs
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"]
}
}
}remember-mcp-vscode · Install
Installation
- Install Remember MCP from the VS Code Marketplace
- The extension will automatically detect if Python and pipx are installed
- If needed, it will install pipx for you
- The MCP server will auto-register if enabled in settings
For manual setup:
# Install Python (if not already installed)
# Get it at https://www.python.org/downloads/
# Install pipx
pip install pipx
# Install extension from VS Code marketplaceFor Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"remember-mcp": {
"command": "pipx run --system-site-packages --spec git+https://github.com/NiclasOlofsson/mode-manager-mcp.git mode-manager-mcp"
}
}
}