filesystem vs mcp-server-unitycatalog
并排对比,帮你在这两个 MCP server 之间做选择。
filesystem by modelcontextprotocol | mcp-server-unitycatalog by ognis1205 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 16 |
| 30天用量 | — | — |
| 综合分 | 77 | 33 |
| 官方 | ✓ | — |
| 分类 | 本地文件系统开发者工具效率工具 | 数据库开发者工具AI / LLM 工具 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 14 个月前 |
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
mcp-server-unitycatalog · 概述
Unity Catalog MCP 服务器,为 AI 助手提供数据库函数作为工具。
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
mcp-server-unitycatalog · 使用场景
- AI 助手执行目录化的机器学习函数
- 通过 AI 自动化数据预处理工作流程
- AI 系统中的动态函数发现和执行
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 中安装。
mcp-server-unitycatalog · 安装
安装
使用 uv:
uvx run mcp-server-unitycatalog --uc_server <您的URL> --uc_catalog <目录名> --uc_schema <模式名>使用 Docker:
docker run --rm -i mcp/unitycatalog --uc_server <您的URL> --uc_catalog <目录名> --uc_schema <模式名>Claude Desktop 配置
添加到您的 claude_desktop_config.json:
{
"mcpServers": {
"unitycatalog": {
"command": "uv",
"args": [
"--directory",
"/<您的本地仓库路径>/mcp-server-unitycatalog",
"run",
"mcp-server-unitycatalog",
"--uc_server",
"<您的 Unity Catalog URL>",
"--uc_catalog",
"<您的目录名>",
"--uc_schema",
"<您的模式名>"
]
}
}
}