---
title: "Zoho Campaigns Integration"
description: "Manage Zoho Campaigns lists, contacts, campaigns, reports, and sends"
---
The Zoho Campaigns integration provides access to manage Zoho Campaigns lists, contacts, campaigns, reports, and sends through the Integrate MCP server.

## Installation

The Zoho Campaigns integration is included with the SDK:

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

## Setup

### 1. Create a Zoho Campaigns OAuth App

1. Go to [Zoho API Console](https://api-console.zoho.com)
2. Create a new OAuth application
3. Configure your redirect URI
4. Note your Client ID and Client Secret

### 2. Configure the Integration on Your Server

Add the Zoho Campaigns integration to your server configuration. The integration automatically reads `ZOHO_CAMPAIGNS_CLIENT_ID` and `ZOHO_CAMPAIGNS_CLIENT_SECRET` from your environment variables:

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

export const { client: serverClient } = createMCPServer({
  apiKey: process.env.INTEGRATE_API_KEY,
  integrations: [
    zohoCampaignsIntegration({
      scopes: ["ZohoCampaigns.campaign.ALL", "ZohoCampaigns.contact.ALL", "ZohoCampaigns.report.READ"], // Optional
    }),
  ],
});
```

You can override the environment variables by passing explicit values:

```typescript
zohoCampaignsIntegration({
  clientId: process.env.CUSTOM_ZOHO_CAMPAIGNS_ID,
  clientSecret: process.env.CUSTOM_ZOHO_CAMPAIGNS_SECRET,
      scopes: ["ZohoCampaigns.campaign.ALL", "ZohoCampaigns.contact.ALL", "ZohoCampaigns.report.READ"], // Optional
});
```

### 3. Client-Side Usage

The default client automatically includes all integrations. You can use it directly:

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

await client.authorize("zoho_campaigns");
const result = await client.zoho_campaigns.listMailingLists({});

console.log(result);
```

If you're using a custom client, add the integration to the integrations array:

```typescript
import { createMCPClient, zohoCampaignsIntegration } from "integrate-sdk";

const customClient = createMCPClient({
  integrations: [zohoCampaignsIntegration()],
});
```

## Configuration Options

<AutoTypeTable
  path="../src/integrations/zoho_campaigns.ts"
  name="ZohoCampaignsIntegrationConfig"
/>


## Default Scopes

These defaults are applied unless you override `scopes` in the integration config:

- `ZohoCampaigns.campaign.ALL`
- `ZohoCampaigns.contact.ALL`
- `ZohoCampaigns.report.READ`

## Tools

### `zoho_campaigns_list_mailing_lists`

Campaigns list mailing lists

_No parameters._

### `zoho_campaigns_list_contacts`

Campaigns list contacts

<AutoTypeTable
  path="generated/tool-params/zoho_campaigns.ts"
  name="ZohoCampaignsListContactsParams"
/>

### `zoho_campaigns_add_contact`

Campaigns add contact

<AutoTypeTable
  path="generated/tool-params/zoho_campaigns.ts"
  name="ZohoCampaignsAddContactParams"
/>

### `zoho_campaigns_list_campaigns`

Campaigns list campaigns

<AutoTypeTable
  path="generated/tool-params/zoho_campaigns.ts"
  name="ZohoCampaignsListCampaignsParams"
/>

### `zoho_campaigns_get_campaign_report`

Campaigns get campaign report

<AutoTypeTable
  path="generated/tool-params/zoho_campaigns.ts"
  name="ZohoCampaignsGetCampaignReportParams"
/>

### `zoho_campaigns_send_campaign`

Campaigns send campaign

<AutoTypeTable
  path="generated/tool-params/zoho_campaigns.ts"
  name="ZohoCampaignsSendCampaignParams"
/>

## Notes

- Category: Marketing
- Authentication mode: OAuth
