mcp-server-chart vs flywheel-memory
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | flywheel-memory by velvetmonkey | |
|---|---|---|
| Stars | ★ 4,068 | ★ 44 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Knowledge GraphProductivityAI / LLM Tools |
| Language | TypeScript | TypeScript |
| 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.
flywheel-memory · Summary
Local-first MCP server that provides AI agents with a knowledge graph over Obsidian vaults.
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
flywheel-memory · Use cases
- AI assistants searching across personal knowledge bases with contextual understanding
- Automated note management with wikilink suggestions and entity linking
- Policy-based vault automation for recurring tasks and follow-ups
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"]
}
}
}flywheel-memory · Install
Quick Install
- Install as an Agent Skill:
``bash npx -y skills add velvetmonkey/flywheel-memory -g ``
- Wire the MCP server:
``bash bash <(curl -fsSL https://raw.githubusercontent.com/velvetmonkey/flywheel-memory/main/skills/flywheel/scripts/install.sh) ``
- Restart your client from your vault directory.
Manual MCP Configuration
Add to your .mcp.json:
{
"mcpServers": {
"flywheel": {
"command": "npx",
"args": ["-y", "@velvetmonkey/flywheel-memory"]
}
}
}