mcp-server-chart vs mcp-memory-libsql
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-memory-libsql by spences10 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 84 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsKnowledge GraphDatabase |
| 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.
mcp-memory-libsql · Summary
High-performance persistent memory system for MCP with vector search and knowledge graph capabilities.
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-libsql · Use cases
- Building AI agents with persistent memory and knowledge graphs
- Implementing efficient semantic search and retrieval systems
- Creating context-optimized memory storage for LLM applications
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-libsql · Install
Installation
- Install the server package:
npm install -g mcp-memory-libsql- Configure in your MCP client. For Claude Desktop:
{
"mcpServers": {
"mcp-memory-libsql": {
"command": "npx",
"args": ["-y", "mcp-memory-libsql"],
"env": {
"LIBSQL_URL": "file:/path/to/your/database.db"
}
}
}
}- Set the LIBSQL_URL environment variable to specify your database location (default: file:/memory-tool.db)