Zoho Sign Integration
Manage Zoho Sign requests, templates, contacts, and signature workflows
The Zoho Sign integration provides access to manage Zoho Sign requests, templates, contacts, and signature workflows through the Integrate MCP server.
Installation
The Zoho Sign integration is included with the SDK:
import { zohoSignIntegration } from "integrate-sdk/server";Setup
1. Create a Zoho Sign 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 Sign integration to your server configuration. The integration automatically reads ZOHO_SIGN_CLIENT_ID and ZOHO_SIGN_CLIENT_SECRET from your environment variables:
import { createMCPServer, zohoSignIntegration } from "integrate-sdk/server";
export const { client: serverClient } = createMCPServer({
apiKey: process.env.INTEGRATE_API_KEY,
integrations: [
zohoSignIntegration({
scopes: ["ZohoSign.documents.ALL", "ZohoSign.templates.READ", "ZohoSign.account.READ"], // Optional
}),
],
});You can override the environment variables by passing explicit values:
zohoSignIntegration({
clientId: process.env.CUSTOM_ZOHO_SIGN_ID,
clientSecret: process.env.CUSTOM_ZOHO_SIGN_SECRET,
scopes: ["ZohoSign.documents.ALL", "ZohoSign.templates.READ", "ZohoSign.account.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_sign");
const result = await client.zoho_sign.listRequests({});
console.log(result);If you're using a custom client, add the integration to the integrations array:
import { createMCPClient, zohoSignIntegration } from "integrate-sdk";
const customClient = createMCPClient({
integrations: [zohoSignIntegration()],
});Configuration Options
Prop
Type
Default Scopes
These defaults are applied unless you override scopes in the integration config:
ZohoSign.documents.ALLZohoSign.templates.READZohoSign.account.READ
Tools
zoho_sign_list_requests
Sign list requests
Prop
Type
zoho_sign_get_request
Sign get request
Prop
Type
zoho_sign_create_request
Sign create request
Prop
Type
zoho_sign_list_templates
Sign list templates
Prop
Type
zoho_sign_get_template
Sign get template
Prop
Type
zoho_sign_list_contacts
Sign list contacts
Prop
Type
Notes
- Category: Legal
- Authentication mode: OAuth