Zoho Sprints

The Zoho Sprints connector lets AI agents manage agile project workflows — browsing projects, sprints, and backlog items, creating and updating work items, and logging time. It uses OAuth 2.0 so your credentials are stored encrypted in MCPGate's vault and are never exposed to the AI client.

Required scopes#

MCPGate requests the following OAuth scopes when you connect a Zoho Sprints account.

ScopePurpose
ZohoSprints.projects.ALLRead and manage projects and sprints
ZohoSprints.items.ALLRead, create, and update work items; log time

Tool reference#

The Zoho Sprints connector exposes 11 tools. Use the MCP Apps page to enable or disable individual tools per app, and the Guardrails page to add fine-grained rules on top.

ToolCategoryDescription
zohosprints_list_projectsreadList all projects in Zoho Sprints
zohosprints_get_projectreadGet details of a specific Zoho Sprints project by ID
zohosprints_list_sprintsreadList all sprints in a Zoho Sprints project
zohosprints_get_sprintreadGet details of a specific sprint by ID
zohosprints_list_itemsreadList work items in a Zoho Sprints sprint
zohosprints_get_itemreadGet details of a specific work item by ID
zohosprints_list_backlogreadList backlog items for a Zoho Sprints project
zohosprints_create_itemwriteCreate a new work item in a Zoho Sprints sprint or backlog
zohosprints_update_itemwriteUpdate an existing work item in Zoho Sprints
zohosprints_complete_sprintwriteMark a Zoho Sprints sprint as complete
zohosprints_log_timewriteLog time spent on a work item in Zoho Sprints

Completing a sprint moves incomplete items to backlog

zohosprints_complete_sprint closes the sprint and automatically moves any unfinished work items to the project backlog. This affects team velocity metrics and sprint reports. Ensure the team has reviewed all items before the agent calls this tool.

Common guardrail recipes#

Read-only access#

Apply the read_only preset to enable the seven read tools and deny all write tools. Suitable for sprint review or reporting agents that summarise velocity, backlog size, and sprint progress without modifying any items.

Contribute preset#

Use the contribute preset to enable all tools except zohosprints_complete_sprint. This lets developer agents create items, update status, and log time without being able to close an active sprint.

Full access#

The full_access preset enables all 11 tools. Apply a allow_values guardrail to zohosprints_complete_sprint targeting the project_id field to restrict which projects the agent is permitted to close sprints in.

Troubleshooting#

  • Project ID vs project name — Zoho Sprints uses numeric project IDs in the API. Use zohosprints_list_projects to retrieve the correct ID before calling sprint or item tools.
  • Item type requiredzohosprints_create_item requires an item type (e.g. story, task, bug). Item types are project-specific — check your Zoho Sprints project configuration for available types.
  • Time log formatzohosprints_log_time expects hours and minutes as separate integer values. Passing a decimal value will cause a validation error.