Zoho Sprints Integration
Manage Zoho Sprints portals, projects, sprints, epics, and work items
The Zoho Sprints integration provides access to manage Zoho Sprints portals, projects, sprints, epics, and work items through the Integrate MCP server.
Installation
The Zoho Sprints integration is included with the SDK:
import { zohoSprintsIntegration } from "integrate-sdk/server";Setup
1. Create a Zoho Sprints 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 Sprints integration to your server configuration. The integration automatically reads ZOHO_SPRINTS_CLIENT_ID and ZOHO_SPRINTS_CLIENT_SECRET from your environment variables:
import { createMCPServer, zohoSprintsIntegration } from "integrate-sdk/server";
export const { client: serverClient } = createMCPServer({
apiKey: process.env.INTEGRATE_API_KEY,
integrations: [
zohoSprintsIntegration({
scopes: ["ZohoSprints.projects.ALL", "ZohoSprints.sprints.ALL", "ZohoSprints.workitems.ALL", "ZohoSprints.epics.ALL"], // Optional
}),
],
});You can override the environment variables by passing explicit values:
zohoSprintsIntegration({
clientId: process.env.CUSTOM_ZOHO_SPRINTS_ID,
clientSecret: process.env.CUSTOM_ZOHO_SPRINTS_SECRET,
scopes: ["ZohoSprints.projects.ALL", "ZohoSprints.sprints.ALL", "ZohoSprints.workitems.ALL", "ZohoSprints.epics.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_sprints");
const result = await client.zoho_sprints.listPortals({});
console.log(result);If you're using a custom client, add the integration to the integrations array:
import { createMCPClient, zohoSprintsIntegration } from "integrate-sdk";
const customClient = createMCPClient({
integrations: [zohoSprintsIntegration()],
});Configuration Options
Prop
Type
Default Scopes
These defaults are applied unless you override scopes in the integration config:
ZohoSprints.projects.ALLZohoSprints.sprints.ALLZohoSprints.workitems.ALLZohoSprints.epics.ALL
Tools
zoho_sprints_list_portals
Sprints list portals
No parameters.
zoho_sprints_list_projects
Sprints list projects
Prop
Type
zoho_sprints_list_sprints
Sprints list sprints
Prop
Type
zoho_sprints_list_work_items
Sprints list work items
Prop
Type
zoho_sprints_create_work_item
Sprints create work item
Prop
Type
zoho_sprints_list_epics
Sprints list epics
Prop
Type
Notes
- Category: Engineering
- Authentication mode: OAuth