IntegrateIntegrate
Integrations

Zoho Creator Integration

Manage Zoho Creator applications, forms, reports, and app records

The Zoho Creator integration provides access to manage Zoho Creator applications, forms, reports, and app records through the Integrate MCP server.

Installation

The Zoho Creator integration is included with the SDK:

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

Setup

1. Create a Zoho Creator 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 Creator integration to your server configuration. The integration automatically reads ZOHO_CREATOR_CLIENT_ID and ZOHO_CREATOR_CLIENT_SECRET from your environment variables:

import { createMCPServer, zohoCreatorIntegration } from "integrate-sdk/server";

export const { client: serverClient } = createMCPServer({
  apiKey: process.env.INTEGRATE_API_KEY,
  integrations: [
    zohoCreatorIntegration({
      scopes: ["ZohoCreator.meta.READ", "ZohoCreator.data.READ", "ZohoCreator.data.CREATE", "ZohoCreator.data.UPDATE"], // Optional
    }),
  ],
});

You can override the environment variables by passing explicit values:

zohoCreatorIntegration({
  clientId: process.env.CUSTOM_ZOHO_CREATOR_ID,
  clientSecret: process.env.CUSTOM_ZOHO_CREATOR_SECRET,
      scopes: ["ZohoCreator.meta.READ", "ZohoCreator.data.READ", "ZohoCreator.data.CREATE", "ZohoCreator.data.UPDATE"], // 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_creator");
const result = await client.zoho_creator.listApplications({});

console.log(result);

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

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

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

Configuration Options

Prop

Type

Default Scopes

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

  • ZohoCreator.meta.READ
  • ZohoCreator.data.READ
  • ZohoCreator.data.CREATE
  • ZohoCreator.data.UPDATE

Tools

zoho_creator_list_applications

Creator list applications

Prop

Type

zoho_creator_list_forms

Creator list forms

Prop

Type

zoho_creator_list_reports

Creator list reports

Prop

Type

zoho_creator_list_records

Creator list records

Prop

Type

zoho_creator_create_record

Creator create record

Prop

Type

zoho_creator_update_record

Creator update record

Prop

Type

Notes

  • Category: Business
  • Authentication mode: OAuth

On this page