Skip to main content
Connect Brew to your MCP client in two steps.

1. Get your connection URL and key

The connection URL is clean — the same for every brand:
https://brew.new/api/mcp
Copy it and a brand-scoped API key (brew_…) from Settings → API in the app (or the final step of onboarding). The key carries the org + brand. See Authentication & scoping.

2. Add it to your client

Add the server to your client’s mcp.json (Cursor and most MCP clients use this shape):
{
  "mcpServers": {
    "brew": {
      "url": "https://brew.new/api/mcp",
      "headers": { "Authorization": "Bearer brew_YOUR_API_KEY" }
    }
  }
}
Using Claude Code, Claude Desktop, VS Code, Windsurf, Cline, or Goose? See Connect your client for the exact per-client config.

3. Run your first workflow

Ask your agent to call get_brew_capabilities first — it returns the catalog (scopes, credit costs, the error envelope) plus the end-to-end workflows. The server also ships guided prompts (launch_email_campaign, build_segment_and_send, …) that your client can surface directly. A first campaign, end to end:
  1. create_email_design — generate an on-brand email from a prompt.
  2. send_email with test: true to QA it.
  3. list_domains (a verified sender) + list_audiences (or create_audience).
  4. send_email with the audienceId, domainId, and a unique idempotency_key.
  5. get_send_analytics + get_campaign_analytics to measure.
That’s the full create → send → analyze loop — see Workflows for more, including composing with a CRM MCP for intelligent segments.

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.