IntegrateIntegrate
Integrations

Zoho Writer Integration

Manage Zoho Writer documents, templates, merges, and exports

The Zoho Writer integration provides access to manage Zoho Writer documents, templates, merges, and exports through the Integrate MCP server.

Installation

The Zoho Writer integration is included with the SDK:

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

Setup

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

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

export const { client: serverClient } = createMCPServer({
  apiKey: process.env.INTEGRATE_API_KEY,
  integrations: [
    zohoWriterIntegration({
      scopes: ["ZohoWriter.documentEditor.ALL", "ZohoWriter.merge.ALL"], // Optional
    }),
  ],
});

You can override the environment variables by passing explicit values:

zohoWriterIntegration({
  clientId: process.env.CUSTOM_ZOHO_WRITER_ID,
  clientSecret: process.env.CUSTOM_ZOHO_WRITER_SECRET,
      scopes: ["ZohoWriter.documentEditor.ALL", "ZohoWriter.merge.ALL"], // 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_writer");
const result = await client.zoho_writer.listDocuments({});

console.log(result);

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

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

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

Configuration Options

Prop

Type

Default Scopes

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

  • ZohoWriter.documentEditor.ALL
  • ZohoWriter.merge.ALL

Tools

zoho_writer_list_documents

Writer list documents

Prop

Type

zoho_writer_get_document

Writer get document

Prop

Type

zoho_writer_create_document

Writer create document

Prop

Type

zoho_writer_list_templates

Writer list templates

Prop

Type

zoho_writer_merge_document

Writer merge document

Prop

Type

zoho_writer_export_document

Writer export document

Prop

Type

Notes

  • Category: Productivity
  • Authentication mode: OAuth

On this page