IntegrateIntegrate
Integrations

Resend Integration

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:

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

Setup

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

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

import { client } from "integrate-sdk";

// Use client.resend methods after connecting

Environment Variables

  • RESEND_API_KEY (when supported by this integration)

Configuration Options

Prop

Type

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

On this page