diff --git a/docs/MCP-Server.md b/docs/MCP-Server.md index 8487495a6c..cd4ef630ae 100644 --- a/docs/MCP-Server.md +++ b/docs/MCP-Server.md @@ -76,3 +76,24 @@ Press Ctrl-D or Ctrl-C to terminate it. } } ``` + +## Available Tools + +The Homebrew MCP Server provides the following tools: + +| Tool | Description | +|------|-------------| +| `search` | Perform a substring search of cask tokens and formula names. If text is flanked by slashes, it is interpreted as a regular expression. | +| `info` | Display brief statistics for your Homebrew installation. If a formula or cask is provided, show summary of information about it. | +| `install` | Install a formula or cask. | +| `update` | Fetch the newest version of Homebrew and all formulae from GitHub using git and perform any necessary migrations. | +| `upgrade` | Upgrade outdated casks and outdated, unpinned formulae using the same options they were originally installed with. If cask or formula are specified, upgrade only the given cask or formula kegs (unless they are pinned). | +| `uninstall` | Uninstall a formula or cask. | +| `list` | List all installed formulae and casks. If formula is provided, summarise the paths within its current keg. If cask is provided, list its artifacts. | +| `config` | Show Homebrew and system configuration info useful for debugging. If you file a bug report, you will be required to provide this information. | +| `doctor` | Check your system for potential problems. Will exit with a non-zero status if any potential problems are found. | +| `typecheck` | Check for typechecking errors using Sorbet. | +| `style` | Check formulae or files for conformance to Homebrew style guidelines. | +| `tests` | Run Homebrew's unit and integration tests. | +| `commands` | Show lists of built-in and external commands. | +| `help` | Outputs the usage instructions for a brew command. |