MCP Catalogs
Home

filesystem vs mcp-gitlab-server

Side-by-side comparison to help you pick between these two MCP servers.

filesystem
by modelcontextprotocol
mcp-gitlab-server
by yoda-digital
Stars★ 85,748★ 49
30d uses
Score7747
Official
Categories
File SystemDeveloper ToolsProductivity
Developer ToolsOps & InfraProductivity
LanguageTypeScriptTypeScript
Last committhis monththis month

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

mcp-gitlab-server · Summary

Production-ready GitLab MCP server with 86 tools, full API coverage, multiple auth modes and transports.

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

mcp-gitlab-server · Use cases

  • Enable AI assistants to manage GitLab repositories, create issues and merge requests
  • Automate CI/CD pipeline management through AI agents
  • Provide GitLab access to team members through MCP-compatible clients without direct API access

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using 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 Extension

Click the installation buttons in the README to install directly in VS Code.

mcp-gitlab-server · Install

Installation

Using npm (for Claude Desktop, Cursor, Zed)

Add to your client's MCP configuration (e.g., 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"
      }
    }
  }
}

Using Docker (remote deployment)

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

Using Helm (Kubernetes)

helm install gitlab-mcp oci://ghcr.io/yoda-digital/charts/gitlab-mcp
Comparison generated from public README + GitHub signals. Last updated automatically.