
Connects Claude to Homebrew's package registry via the formulae.brew.sh API. You get five tools: look up formulae and casks by name, pull install analytics for specific packages or top charts, and list recently added formulae. Useful when you're researching package popularity, checking if something exists in Homebrew, or need current install counts for decision making. Runs through Pipeworx's gateway, which means you can either use this standalone or tap into their full catalog of 250+ data sources. Supports an ask_pipeworx helper that takes natural language queries instead of direct tool calls.
Homebrew formulae.brew.sh MCP — formulae + casks + installation counts. Keyless.
Part of Pipeworx — an MCP gateway connecting AI agents to 1476+ live data sources.
formula(name) — formula by namecask(name) — cask by nameanalytics_install(formula?, days?) — install counts (per formula or top list)analytics_cask_install(cask?, days?) — cask install countsrecent_formulae(days?, limit?) — recently-added formulaehttps://formulae.brew.sh/api/
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"homebrew-formulae": {
"url": "https://gateway.pipeworx.io/homebrew-formulae/mcp"
}
}
}
tools/list at https://gateway.pipeworx.io/homebrew-formulae/mcp returns the tools in the table
above plus the shared Pipeworx meta-tools — ask_pipeworx,
discover_tools, search_within, remember/recall and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's initialize response states its exact scope, and
is the authoritative answer for a given day.
This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
ask_pipeworx, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.
Or connect to the full Pipeworx gateway to get every pack's tools listed directly, instead of just this one's:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Both URLs reach the same gateway and the same 1476+ data sources. The
only difference is which pack's tools are listed directly; ask_pipeworx
reaches all of them from either one.
Instead of calling tools directly, you can ask questions in plain English — this works on the pack endpoint above as well as on the full gateway:
ask_pipeworx({ question: "your question about Homebrew Formulae data" })
The gateway picks the right tool and fills the arguments automatically.
MIT