filesystem vs mcp-gitlab-server
并排对比,帮你在这两个 MCP server 之间做选择。
filesystem by modelcontextprotocol | mcp-gitlab-server by yoda-digital | |
|---|---|---|
| Stars | ★ 85,748 | ★ 49 |
| 30天用量 | — | — |
| 综合分 | 77 | 47 |
| 官方 | ✓ | — |
| 分类 | 本地文件系统开发者工具效率工具 | 开发者工具运维基建效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
mcp-gitlab-server · 概述
生产级 GitLab MCP 服务器,提供 86 个工具,完整 API 覆盖,多种认证模式和传输方式。
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
mcp-gitlab-server · 使用场景
- 使 AI 助手能够管理 GitLab 代码库,创建问题和合并请求
- 通过 AI 代理自动化 CI/CD 管道管理
- 通过兼容 MCP 的客户端向团队成员提供 GitLab 访问权限,而无需直接 API 访问
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-gitlab-server · 安装
安装
使用 npm(适用于 Claude Desktop、Cursor、Zed)
添加到您的客户端 MCP 配置中(例如 claude_desktop_config.json):
{
"mcpServers": {
"gitlab": {
"command": "npx",
"args": ["-y", "@yoda.digital/gitlab-mcp-server"],
"env": {
"GITLAB_PERSONAL_ACCESS_TOKEN": "glpat-…",
"GITLAB_API_URL": "https://gitlab.com/api/v4"
}
}
}
}使用 Docker(远程部署)
docker run --rm -p 3000:3000 \
-e HOST=0.0.0.0 \
-e AUTH_MODE=oauth \
-e USE_STREAMABLE_HTTP=true \
ghcr.io/yoda-digital/mcp-gitlab-server:latest使用 Helm(Kubernetes)
helm install gitlab-mcp oci://ghcr.io/yoda-digital/charts/gitlab-mcp