dbt-doctor vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
dbt-doctor by Astoriel | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 134 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 48 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具数据库AI / LLM 工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 1 个月前 | 本月 |
dbt-doctor · 概述
dbt项目的AI驱动质量与治理MCP服务器,提供审计、分析、漂移检测和文档生成功能。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
dbt-doctor · 使用场景
- 基于文档、测试和命名约定,以0-100%分数审计dbt项目健康状况
- 分析数据模型以生成列统计信息和智能测试建议
- 使用建议的测试和文档自动更新schema.yml文件
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
dbt-doctor · 安装
通过pip安装dbt-doctor:
pip install dbt-doctor对于Claude Desktop,添加到您的claude_desktop_config.json:
{
"mcpServers": {
"dbt-doctor": {
"command": "dbt-doctor",
"args": ["--project-dir", "/absolute/path/to/your/dbt/project"]
}
}
}对于Cursor,添加到您的.cursor/mcp.json:
{
"mcpServers": {
"dbt-doctor": {
"command": "dbt-doctor",
"args": ["--project-dir", "/absolute/path/to/your/dbt/project"]
}
}
}前提条件:使用前运行dbt compile以确保target/manifest.json可用。
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 中安装。