mcp-documentation-server vs mcp-server-chart
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-documentation-server by andrea9293 | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 313 | ★ 4,068 |
| 30天用量 | — | 10,239 |
| 综合分 | 52 | 84 |
| 官方 | — | — |
| 分类 | 本地文件系统搜索AI / LLM 工具 | AI / LLM 工具开发者工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 3 个月前 | 本月 |
mcp-documentation-server · 概述
TypeScript 实现的 MCP 服务器,使用 Orama 向量数据库和可选的 Gemini AI 集成,提供本地文档管理和语义搜索功能。
mcp-server-chart · 概述
使用 AntV 生成 26+ 种图表的 TypeScript MCP 服务器,支持多种图表类型和部署方式。
mcp-documentation-server · 使用场景
- 管理和搜索技术文档和 API 参考
- 创建公司内部文档的知识库
- 具有语义搜索功能的个人文档组织
mcp-server-chart · 使用场景
- 数据分析师从数据集中创建可视化报告
- AI 助手根据用户请求生成自定义图表
- Web 应用通过 HTTP API 嵌入可视化功能
mcp-documentation-server · 安装
安装
- 配置您的 MCP 客户端(例如 Claude Desktop、VS Code):
{
"mcpServers": {
"documentation": {
"command": "npx",
"args": [
"-y",
"@andrea9293/mcp-documentation-server"
],
"env": {
"MCP_BASE_DIR": "/path/to/workspace",
"GEMINI_API_KEY": "your-api-key-here",
"MCP_EMBEDDING_MODEL": "Xenova/all-MiniLM-L6-v2",
"START_WEB_UI": "true",
"WEB_PORT": "3080"
}
}
}
}- 安装包:
npm install -g @andrea9293/mcp-documentation-servermcp-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"]
}
}
}