> ## Documentation Index
> Fetch the complete documentation index at: https://docs.brew.new/llms.txt
> Use this file to discover all available pages before exploring further.

# MCP quickstart

> Connect the Brew MCP server to Claude, ChatGPT, or Cursor with OAuth and run your first email-marketing workflow.

Connect Brew to your MCP client in two steps — no API key required.

## 1. Add the connection URL

The connection URL is clean — the same for every brand:

```
https://brew.new/api/mcp
```

Add it to your client as a **custom connector** (Claude, ChatGPT, Manus) or drop it into the client's `mcp.json` (Cursor, VS Code, and most others):

```json theme={null}
{
  "mcpServers": {
    "brew": {
      "url": "https://brew.new/api/mcp"
    }
  }
}
```

## 2. Sign in with Brew

On first connect the client opens your browser: **sign in with Brew** and **pick a brand**. That's it — Brew is its own OAuth 2.1 connector, so the token is issued and scoped to that brand for you (revocable anytime in **Settings → API**).

<Tip>Per-client steps — Claude Code, Claude Desktop, ChatGPT, Cursor, VS Code, Windsurf, Cline, Goose, OpenCode, Codex, and Manus — are on [Connect your client](/api-reference/mcp/connect-your-client). Headless or CI setup with no OAuth UI? Use a brand-scoped [API key](/api-reference/mcp/authentication-and-scoping) as a bearer header instead.</Tip>

## 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](/api-reference/mcp/workflows) (`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](/api-reference/mcp/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:

<Tabs>
  <Tab title="Self-Service Tools">
    <CardGroup cols="2">
      <Card title="Search Documentation" icon="magnifying-glass" color="#c44925">
        Type in the "Ask any question" search bar at the top left to instantly find relevant documentation pages.
      </Card>

      <Card title="ChatGPT/Claude Integration" icon="robot" color="#c44925">
        Click "Open in ChatGPT" at the top right of any page to analyze documentation with ChatGPT or Claude for deeper insights.
      </Card>
    </CardGroup>
  </Tab>

  <Tab title="Talk to Our Team">
    <CardGroup cols="2">
      <Card title="Schedule a Call" icon="calendar" color="#c44925" href="https://calendar.google.com/calendar/u/0/appointments/schedules/AcZssZ1iYoRUG1J792XQpbuQLjSRRDupr7MwraFK-HQRCtTYdBmrQi8nZu2qXfzKQigb8gbKJK3KN3-R">
        Book time with our founders for personalized guidance on strategy, best practices, or complex implementation questions.
      </Card>

      <Card title="Call Us Directly" icon="phone" color="#c44925">
        Need immediate assistance? Reach us at **+1-(332)-203-2145** for urgent issues or time-sensitive questions.
      </Card>

      <Card title="Slack Channel" icon="slack" color="#c44925">
        Our preferred support channel. You'll receive an invite after signup for direct founder support and fast responses.
      </Card>

      <Card title="Email Support" icon="envelope" color="#c44925" href="mailto:support@brew.new">
        Contact us at **[support@brew.new](mailto:support@brew.new)** for detailed inquiries or if you prefer not to use Slack.
      </Card>
    </CardGroup>
  </Tab>
</Tabs>
