···11+# typed: false
22+# frozen_string_literal: true
33+44+# This file is generated by the release workflow of
55+# https://github.com/jmrplens/gitlab-mcp-server — do not edit by hand.
66+class GitlabMcpServer < Formula
77+ desc "GitLab MCP server: REST v4 + GraphQL as tools for AI assistants"
88+ homepage "https://jmrplens.github.io/gitlab-mcp-server/"
99+ version "2.5.0"
1010+ license "MIT"
1111+1212+ on_macos do
1313+ on_arm do
1414+ url "https://github.com/jmrplens/gitlab-mcp-server/releases/download/v2.5.0/gitlab-mcp-server-darwin-arm64"
1515+ sha256 "d67576fedadfc9346288b5224f9b9d57cad5425512ff5e17f203717c0806d77b"
1616+ end
1717+ on_intel do
1818+ url "https://github.com/jmrplens/gitlab-mcp-server/releases/download/v2.5.0/gitlab-mcp-server-darwin-amd64"
1919+ sha256 "16414ac5c975fdea94689ed55d74ae073bdb6ce2501186b74f0f70f55c913efa"
2020+ end
2121+ end
2222+2323+ on_linux do
2424+ on_arm do
2525+ url "https://github.com/jmrplens/gitlab-mcp-server/releases/download/v2.5.0/gitlab-mcp-server-linux-arm64"
2626+ sha256 "005b88a7d7f7eb616d0588291c824ab8360588d1dcd6fdf9e431a49708bfd76d"
2727+ end
2828+ on_intel do
2929+ url "https://github.com/jmrplens/gitlab-mcp-server/releases/download/v2.5.0/gitlab-mcp-server-linux-amd64"
3030+ sha256 "d0de420dac577dabae2aa64da580c28b43b95cdffafde44cc5753363d7a43239"
3131+ end
3232+ end
3333+3434+ def install
3535+ bin.install Dir["gitlab-mcp-server-*"].first => "gitlab-mcp-server"
3636+ end
3737+3838+ def caveats
3939+ <<~EOS
4040+ Homebrew manages upgrades for this binary, so disable the built-in
4141+ self-update in your MCP client configuration:
4242+ AUTO_UPDATE=false
4343+4444+ Configure your MCP client with:
4545+ command: #{HOMEBREW_PREFIX}/bin/gitlab-mcp-server
4646+ env: GITLAB_TOKEN=glpat-... (and GITLAB_URL for self-managed)
4747+4848+ Or run the interactive setup wizard:
4949+ gitlab-mcp-server --setup
5050+ EOS
5151+ end
5252+5353+ test do
5454+ assert_match version.to_s, shell_output("#{bin}/gitlab-mcp-server --version")
5555+ end
5656+end
+18
README.md
···11+# jmrplens Homebrew Tap
22+33+Homebrew formulae for [jmrplens](https://github.com/jmrplens) projects.
44+55+## Install
66+77+```bash
88+brew install jmrplens/tap/gitlab-mcp-server
99+```
1010+1111+## Formulae
1212+1313+| Formula | Description |
1414+| ---------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- |
1515+| [`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 |
1616+1717+Formulae install the prebuilt, checksum-pinned release binaries and are
1818+updated automatically by each release of the corresponding project.