Skip to main content
Every client connects to the same clean endpoint:
https://brew.new/api/mcp
Authenticate with a brand-scoped API key — send it as Authorization: Bearer brew_…. Grab the connection URL and a key from Settings → API in Brew (the Connect AI agents panel copies both). The key carries the org + brand, so there’s nothing else to configure.
OAuth-based connection (for clients like Claude on the web and ChatGPT, whose connector UIs only accept a URL with no header field) is a planned follow-up. Today the server is API-key only — use the config-file clients below, or the Claude Desktop bridge.
Pick your agent:
1

Add the server

Run this in your terminal — replace the key with one from Settings → API:
claude mcp add --transport http brew "https://brew.new/api/mcp" \
  --header "Authorization: Bearer brew_YOUR_API_KEY"
2

Verify

Open a session and run /mcp — Brew should show connected with its tools.

Verify your connection

Once connected, ask your agent to call get_brew_capabilities — it returns the tool catalog, credit costs, and the guided workflows. Or smoke-test the endpoint directly:
curl -sN https://brew.new/api/mcp \
  -H "Authorization: Bearer brew_YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Next: the quickstart create → send → analyze loop, the full tool catalog, and the guided workflows.

Need Help?

Our team is ready to support you at every step of your journey with Brew. Choose the option that works best for you:

Search Documentation

Type in the “Ask any question” search bar at the top left to instantly find relevant documentation pages.

ChatGPT/Claude Integration

Click “Open in ChatGPT” at the top right of any page to analyze documentation with ChatGPT or Claude for deeper insights.