Connects to the Open Brewery DB API with no authentication required. You get three tools: search breweries by name, fetch full details by ID, and list all breweries in a given city. Each returns contact info, location data, brewery type, and where available, hours and website. Useful when you're building anything around craft beer discovery, travel planning, or local business data and want a clean, free dataset to work with. Part of the Pipeworx gateway, so you can either use it standalone or tap into their broader catalog of 673+ data sources through a single connection.
Breweries MCP — Open Brewery DB API (free, no auth)
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
search_breweries | Search for breweries by name. Returns location, phone, website, and contact details for matching results. |
get_brewery | Get full details for a brewery by ID. Returns address, hours, type, and contact info. Use search_breweries to find brewery IDs. |
breweries_by_city | Find all breweries in a city (e.g., "Portland", "Denver"). Returns location, type, and contact details for each. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"breweries": {
"url": "https://gateway.pipeworx.io/breweries/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Breweries data" })
The gateway picks the right tool and fills the arguments automatically.
MIT