[READ-ONLY] Mirror of https://github.com/jmrplens/homebrew-tap. Homebrew formulae for jmrplens projects
0

Configure Feed

Select the types of activity you want to include in your feed.

Add gitlab-mcp-server formula (v2.5.0)

José M. Requena Plens (Jul 8, 2026, 2:06 AM +0200) e4ab77c5

+74
+56
Formula/gitlab-mcp-server.rb
··· 1 + # typed: false 2 + # frozen_string_literal: true 3 + 4 + # This file is generated by the release workflow of 5 + # https://github.com/jmrplens/gitlab-mcp-server — do not edit by hand. 6 + class GitlabMcpServer < Formula 7 + desc "GitLab MCP server: REST v4 + GraphQL as tools for AI assistants" 8 + homepage "https://jmrplens.github.io/gitlab-mcp-server/" 9 + version "2.5.0" 10 + license "MIT" 11 + 12 + on_macos do 13 + on_arm do 14 + url "https://github.com/jmrplens/gitlab-mcp-server/releases/download/v2.5.0/gitlab-mcp-server-darwin-arm64" 15 + sha256 "d67576fedadfc9346288b5224f9b9d57cad5425512ff5e17f203717c0806d77b" 16 + end 17 + on_intel do 18 + url "https://github.com/jmrplens/gitlab-mcp-server/releases/download/v2.5.0/gitlab-mcp-server-darwin-amd64" 19 + sha256 "16414ac5c975fdea94689ed55d74ae073bdb6ce2501186b74f0f70f55c913efa" 20 + end 21 + end 22 + 23 + on_linux do 24 + on_arm do 25 + url "https://github.com/jmrplens/gitlab-mcp-server/releases/download/v2.5.0/gitlab-mcp-server-linux-arm64" 26 + sha256 "005b88a7d7f7eb616d0588291c824ab8360588d1dcd6fdf9e431a49708bfd76d" 27 + end 28 + on_intel do 29 + url "https://github.com/jmrplens/gitlab-mcp-server/releases/download/v2.5.0/gitlab-mcp-server-linux-amd64" 30 + sha256 "d0de420dac577dabae2aa64da580c28b43b95cdffafde44cc5753363d7a43239" 31 + end 32 + end 33 + 34 + def install 35 + bin.install Dir["gitlab-mcp-server-*"].first => "gitlab-mcp-server" 36 + end 37 + 38 + def caveats 39 + <<~EOS 40 + Homebrew manages upgrades for this binary, so disable the built-in 41 + self-update in your MCP client configuration: 42 + AUTO_UPDATE=false 43 + 44 + Configure your MCP client with: 45 + command: #{HOMEBREW_PREFIX}/bin/gitlab-mcp-server 46 + env: GITLAB_TOKEN=glpat-... (and GITLAB_URL for self-managed) 47 + 48 + Or run the interactive setup wizard: 49 + gitlab-mcp-server --setup 50 + EOS 51 + end 52 + 53 + test do 54 + assert_match version.to_s, shell_output("#{bin}/gitlab-mcp-server --version") 55 + end 56 + end
+18
README.md
··· 1 + # jmrplens Homebrew Tap 2 + 3 + Homebrew formulae for [jmrplens](https://github.com/jmrplens) projects. 4 + 5 + ## Install 6 + 7 + ```bash 8 + brew install jmrplens/tap/gitlab-mcp-server 9 + ``` 10 + 11 + ## Formulae 12 + 13 + | Formula | Description | 14 + | ---------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | 15 + | [`gitlab-mcp-server`](Formula/gitlab-mcp-server.rb) | [GitLab MCP Server](https://github.com/jmrplens/gitlab-mcp-server) — GitLab REST v4 + GraphQL as MCP tools for AI assistants | 16 + 17 + Formulae install the prebuilt, checksum-pinned release binaries and are 18 + updated automatically by each release of the corresponding project.