IntegrateIntegrate
Integrations

Zoho Campaigns Integration

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:

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

Setup

1. Create a Zoho Campaigns OAuth App

  1. Go to Zoho API Console
  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:

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:

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:

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:

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

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

Configuration Options

Prop

Type

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

Prop

Type

zoho_campaigns_add_contact

Campaigns add contact

Prop

Type

zoho_campaigns_list_campaigns

Campaigns list campaigns

Prop

Type

zoho_campaigns_get_campaign_report

Campaigns get campaign report

Prop

Type

zoho_campaigns_send_campaign

Campaigns send campaign

Prop

Type

Notes

  • Category: Marketing
  • Authentication mode: OAuth

On this page