View as Markdown

Zoho People Integration

Manage Zoho People forms, employees, attendance, leave requests, and time tracking

The Zoho People integration provides access to manage Zoho People forms, employees, attendance, leave requests, and time tracking through the Integrate MCP server.

Installation

The Zoho People integration is included with the SDK:

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

Setup

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

import { createMCPServer, zohoPeopleIntegration } from "integrate-sdk/server";
 
export const { client: serverClient } = createMCPServer({
  apiKey: process.env.INTEGRATE_API_KEY,
  integrations: [
    zohoPeopleIntegration({
      scopes: ["ZohoPeople.forms.ALL", "ZohoPeople.employee.ALL", "ZohoPeople.leave.ALL", "ZohoPeople.attendance.ALL"], // Optional
    }),
  ],
});

You can override the environment variables by passing explicit values:

zohoPeopleIntegration({
  clientId: process.env.CUSTOM_ZOHO_PEOPLE_ID,
  clientSecret: process.env.CUSTOM_ZOHO_PEOPLE_SECRET,
      scopes: ["ZohoPeople.forms.ALL", "ZohoPeople.employee.ALL", "ZohoPeople.leave.ALL", "ZohoPeople.attendance.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_people");
const result = await client.zoho_people.listForms({});
 
console.log(result);

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

import { createMCPClient, zohoPeopleIntegration } from "integrate-sdk";
 
const customClient = createMCPClient({
  integrations: [zohoPeopleIntegration()],
});

Configuration Options

export interface ZohoPeopleIntegrationConfig {
  clientId?: string;

Default Scopes

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

  • ZohoPeople.forms.ALL
  • ZohoPeople.employee.ALL
  • ZohoPeople.leave.ALL
  • ZohoPeople.attendance.ALL

Tools

zoho_people_list_forms

People list forms

No parameters.

zoho_people_list_employees

People list employees

export interface ZohoPeopleListEmployeesParams {
    "sIndex"?: number;

zoho_people_get_employee

People get employee

export interface ZohoPeopleGetEmployeeParams {
    "employee_id": string;

zoho_people_list_attendance

People list attendance

export interface ZohoPeopleListAttendanceParams {
    "fromDate"?: string;

zoho_people_list_leave_requests

People list leave requests

export interface ZohoPeopleListLeaveRequestsParams {
    "fromDate"?: string;

zoho_people_list_time_logs

People list time logs

export interface ZohoPeopleListTimeLogsParams {
    "fromDate"?: string;

Notes

  • Category: HR & Recruiting
  • Authentication mode: OAuth