bonnard vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
bonnard by bonnard-data | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 26 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 44 | 77 |
| 官方 | — | ✓ |
| 分类 | 数据库AI / LLM 工具开发者工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 3 个月前 | 本月 |
bonnard · 概述
Bonnard 是一个 AI 原生语义层,通过 MCP 服务器为 AI 代理提供可靠的数据查询能力。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
bonnard · 使用场景
- AI 代理查询一致的语义层进行分析和报告
- 构建具有受管指标和维度的数据应用
- 通过 MCP 将结构化数据能力嵌入 AI 工作流
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
bonnard · 安装
# 1. 搭建项目
npx @bonnard/cli init --self-hosted
# 2. 配置数据源
# 编辑 .env 文件添加数据库凭证
# 3. 启动服务器
docker compose up -d
# 4. 定义语义层
# 将立方体/视图 YAML 文件添加到 bonnard/cubes/ 和 bonnard/views/
# 5. 将模型部署到服务器
bon deploy
# 6. 连接 AI 代理
bon mcp对于 Claude Desktop / Cursor:
{
"mcpServers": {
"bonnard": {
"url": "https://bonnard.example.com/mcp",
"headers": {
"Authorization": "Bearer your-secret-token-here"
}
}
}
}filesystem · 安装
安装
使用 NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}使用 Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code 扩展
点击 README 中的安装按钮直接在 VS Code 中安装。