mcp-server-chart vs remindb
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-server-chart by antvis | remindb by radimsem | |
|---|---|---|
| Stars | ★ 4,068 | ★ 93 |
| 30天用量 | 10,239 | — |
| 综合分 | 84 | 49 |
| 官方 | — | — |
| 分类 | AI / LLM 工具开发者工具效率工具 | AI / LLM 工具知识库 / RAG开发者工具 |
| 实现语言 | TypeScript | Go |
| 最近提交 | 本月 | 本月 |
mcp-server-chart · 概述
使用 AntV 生成 26+ 种图表的 TypeScript MCP 服务器,支持多种图表类型和部署方式。
remindb · 概述
Remindb 是一个代理记忆数据库,通过便携式 SQLite 文件与 MCP 工具集成,可减少 75-99% 的会话令牌。
mcp-server-chart · 使用场景
- 数据分析师从数据集中创建可视化报告
- AI 助手根据用户请求生成自定义图表
- Web 应用通过 HTTP API 嵌入可视化功能
remindb · 使用场景
- 为 AI 编码助手提供长期记忆,避免重复阅读未更改的文件
- 具有基于温度的相关性跟踪的知识管理系统
- 跨多个代理共享记忆数据库的协作环境
mcp-server-chart · 安装
安装
全局安装:
npm install -g @antv/mcp-server-chart对于桌面应用(如 Claude Desktop、VSCode):
{
"mcpServers": {
"mcp-server-chart": {
"command": "npx",
"args": ["-y", "@antv/mcp-server-chart"]
}
}
}Windows 系统:
{
"mcpServers": {
"mcp-server-chart": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
}
}
}remindb · 安装
安装
**一键安装 (Linux/macOS):**
curl -fsSL https://raw.githubusercontent.com/radimsem/remindb/main/install.sh | bash**Windows (PowerShell):**
iwr -useb https://raw.githubusercontent.com/radimsem/remindb/main/install.ps1 | iex**从源码编译 (Go 1.26+):**
git clone https://github.com/radimsem/remindb.git
cd remindb
go build -o ~/.local/bin/remindb ./cmd/remindb**MCP 集成 (Claude Desktop):** 添加到 claude_desktop_config.json:
{
"mcpServers": {
"remindb": {
"command": "remindb",
"args": ["serve"]
}
}
}