From bbb3fd25a9a51b1751c975c5a45250e2d9496299 Mon Sep 17 00:00:00 2001 From: Algis Dumbris Date: Sat, 30 May 2026 07:41:58 +0300 Subject: [PATCH] docs: fix outdated Homebrew install instructions The brew section showed a deprecated two-step 'brew tap' + 'brew install' form. Collapse to the one-line tap/repo/formula shorthand and split into the cask (full macOS tray app) vs the formula (headless core CLI), matching what release.yml actually publishes (Casks/mcpproxy.rb + Formula/mcpproxy.rb). --- docs/getting-started/installation.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/docs/getting-started/installation.md b/docs/getting-started/installation.md index 0dc0a493..bacd5a71 100644 --- a/docs/getting-started/installation.md +++ b/docs/getting-started/installation.md @@ -21,9 +21,16 @@ The DMG installers are signed and notarized by Apple. ### Homebrew +Install the full macOS tray app (signed & notarized, bundles the core server): + +```bash +brew install --cask smart-mcp-proxy/mcpproxy/mcpproxy +``` + +Or install just the headless core CLI (no tray app): + ```bash -brew tap smart-mcp-proxy/mcpproxy -brew install mcpproxy +brew install smart-mcp-proxy/mcpproxy/mcpproxy ```