Zoho WorkDrive Integration
Manage Zoho WorkDrive team folders, files, folders, and collaborators
The Zoho WorkDrive integration provides access to manage Zoho WorkDrive team folders, files, folders, and collaborators through the Integrate MCP server.
Installation
The Zoho WorkDrive integration is included with the SDK:
import { zohoWorkdriveIntegration } from "integrate-sdk/server";Setup
1. Create a Zoho WorkDrive OAuth App
- Go to Zoho API Console
- Create a new OAuth application
- Configure your redirect URI
- Note your Client ID and Client Secret
2. Configure the Integration on Your Server
Add the Zoho WorkDrive integration to your server configuration. The integration automatically reads ZOHO_WORKDRIVE_CLIENT_ID and ZOHO_WORKDRIVE_CLIENT_SECRET from your environment variables:
import { createMCPServer, zohoWorkdriveIntegration } from "integrate-sdk/server";
export const { client: serverClient } = createMCPServer({
apiKey: process.env.INTEGRATE_API_KEY,
integrations: [
zohoWorkdriveIntegration({
scopes: ["WorkDrive.files.ALL", "WorkDrive.teamfolders.READ", "WorkDrive.users.READ"], // Optional
}),
],
});You can override the environment variables by passing explicit values:
zohoWorkdriveIntegration({
clientId: process.env.CUSTOM_ZOHO_WORKDRIVE_ID,
clientSecret: process.env.CUSTOM_ZOHO_WORKDRIVE_SECRET,
scopes: ["WorkDrive.files.ALL", "WorkDrive.teamfolders.READ", "WorkDrive.users.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_workdrive");
const result = await client.zoho_workdrive.listTeams({});
console.log(result);If you're using a custom client, add the integration to the integrations array:
import { createMCPClient, zohoWorkdriveIntegration } from "integrate-sdk";
const customClient = createMCPClient({
integrations: [zohoWorkdriveIntegration()],
});Configuration Options
Prop
Type
Default Scopes
These defaults are applied unless you override scopes in the integration config:
WorkDrive.files.ALLWorkDrive.teamfolders.READWorkDrive.users.READ
Tools
zoho_workdrive_list_teams
Workdrive list teams
No parameters.
zoho_workdrive_list_team_folders
Workdrive list team folders
Prop
Type
zoho_workdrive_get_team_folder
Workdrive get team folder
Prop
Type
zoho_workdrive_list_files
Workdrive list files
Prop
Type
zoho_workdrive_get_file
Workdrive get file
Prop
Type
zoho_workdrive_create_folder
Workdrive create folder
Prop
Type
Notes
- Category: Storage
- Authentication mode: OAuth