mcp-server-chart vs remembrallmcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | remembrallmcp by roboticforce | |
|---|---|---|
| Stars | ★ 4,068 | ★ 18 |
| 30d uses | 10,239 | — |
| Score | 84 | 43 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsKnowledge Graph |
| Language | TypeScript | Rust |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
remembrallmcp · Summary
MCP server providing persistent memory and code dependency graph for AI agents using Rust and Postgres.
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
remembrallmcp · Use cases
- Enhancing AI coding agents with persistent memory of past decisions and patterns
- Quickly analyzing code dependencies and impact changes before making modifications
- Ingesting project documentation and GitHub PRs to bootstrap agent knowledge
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"]
}
}
}remembrallmcp · Install
Installation
Option 1: Docker Compose (easiest)
git clone https://github.com/cdnsteve/remembrallmcp.git
cd remembrallmcp
# Start Postgres + initialize schema + download embedding model
docker compose up -d
# Run the MCP server
docker compose run --rm remembrallOption 2: Prebuilt Binary
# macOS (Apple Silicon)
curl -fsSL https://github.com/cdnsteve/remembrallmcp/releases/latest/download/remembrall-aarch64-apple-darwin.tar.gz | tar xz
sudo mv remembrall /usr/local/bin/
# Initialize
remembrall initClaude Desktop Configuration
Add to your Claude Desktop config:
{
"mcpServers": {
"remembrall": {
"command": "remembrall"
}
}
}