Loading languages...
HO

Homebrew

@Homebrew

Homebrew’s MCP Server is the official MCP (Model Context Protocol) server for Homebrew.

package manager
homebrew

Homebrew's MCP Server is the official Model Context Protocol (MCP) server for Homebrew, the popular macOS and Linux package manager. It provides contextual information about your Homebrew environment to MCP-compatible clients.

Usage: To launch the server, simply run the brew mcp-server command in your terminal. It will start and run until terminated by Ctrl-D or Ctrl-C.

Configuration: This server uses the stdio transport type. Below are example configurations for various MCP clients:

  • For Cursor/Claude Desktop:

    {
      "mcpServers": {
        "Homebrew": {
          "command": "brew mcp-server"
        }
      }
    }
    
  • For VSCode:

    {
      "mcp": {
        "servers": {
          "Homebrew": {
            "type": "stdio",
            "command": "brew",
            "args": ["mcp-server"]
          }
        }
      }
    }
    
  • For Zed:

    {
      "context_servers": {
        "Homebrew": {
          "command": {
            "path": "brew",
            "args": ["mcp-server"]
          }
        }
      }
    }
    

# mcpServer Config

{
  "mcpServers": {
    "Homebrew": {
      "command": "brew mcp-server"
    }
  }
}

# stdio

brew mcp-server
Transport:
stdio
Language:
ruby
Updated: 7/31/2025