View as Markdown

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

export interface ZohoCreatorIntegrationConfig {
  clientId?: string;

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

export interface ZohoCreatorListApplicationsParams {
    "account_owner": string;

zoho_creator_list_forms

Creator list forms

export interface ZohoCreatorListFormsParams {
    "account_owner": string;

zoho_creator_list_reports

Creator list reports

export interface ZohoCreatorListReportsParams {
    "account_owner": string;

zoho_creator_list_records

Creator list records

export interface ZohoCreatorListRecordsParams {
    "account_owner": string;

zoho_creator_create_record

Creator create record

export interface ZohoCreatorCreateRecordParams {
    "account_owner": string;

zoho_creator_update_record

Creator update record

export interface ZohoCreatorUpdateRecordParams {
    "account_owner": string;

Notes

  • Category: Business
  • Authentication mode: OAuth