---
title: "Resend Integration"
description: "Send email and manage domains with the Resend API"
---
The Resend integration provides access to send email and manage domains with the Resend API through the Integrate MCP server.

## Installation

The Resend integration is included with the SDK:

```typescript
import { resendIntegration } from "integrate-sdk/server";
```

## Setup

Add Resend to your server configuration. Provide credentials via environment variables or integration config:

```typescript
import { createMCPServer, resendIntegration } from "integrate-sdk/server";

export const { client: serverClient } = createMCPServer({
  apiKey: process.env.INTEGRATE_API_KEY,
  integrations: [
    resendIntegration({
      // See configuration options below
    }),
  ],
});
```

### Client-Side Usage

```typescript
import { client } from "integrate-sdk";

// Use client.resend methods after connecting
```

## Environment Variables

- `RESEND_API_KEY` (when supported by this integration)

## Configuration Options

<AutoTypeTable
  path="../src/integrations/resend.ts"
  name="ResendIntegrationOptions"
/>


## Tools

### `resend_list_domains`

List domains

_No parameters._

### `resend_get_domain`

Get domain

_No parameters._

### `resend_create_domain`

Create domain

_No parameters._

### `resend_delete_domain`

Delete domain

_No parameters._

### `resend_verify_domain`

Verify domain

_No parameters._

### `resend_send_email`

Send email

_No parameters._

### `resend_get_email`

Get email

_No parameters._

### `resend_cancel_scheduled_email`

Cancel scheduled email

_No parameters._

## Notes

- Category: Communication
- Authentication mode: API key
