Zoho Sprints MCP Server | Zoho Sprints Help

Zoho Sprints MCP Server

The Model Context Protocol (MCP) is an open protocol that unleashes the power of LLMs and AI agents into your workflow. MCP acts as a connector between two or more applications. Connect your Zoho Sprints workspace with MCP and then configure your preferred AI agent. You can control the level of access for the AI agent within the platform. Once the configuration is complete, you can quickly fetch project information, generate reports, charts or any kind of data visualization through natural language commands. This saves a lot of manual effort and time for the users.

Pre-requisites

  1. An AI agent with the appropriate plan to access the integration section. 
  2. A workspace in Zoho Sprints.
  3. Zoho Sprints API access.

Benefits

  1. Provide natural language prompts to view or update information
  2. Generate custom reports and charts quickly
  3. Fetch all project related activities directly from LLM console

Use case

Let's take the example of a software development team that uses Zoho Sprints to manage agile projects. They can integrate Zoho Sprints with Zoho MCP so AI assistants can securely access sprint data, user stories, bugs, comments, and team activity in real time.
With this integration, you can allow AI to fetch information, modify data, or even delete information from within the AI user interface by providing prompts in natural language. However, ensure that the respective actions are authorized during configuration.

Terminologies

  1. AI Agents: Software programs that can understand our natural command prompts and perform the requested actions using artificial intelligence.
  2. MCP Server: It is a backend component that acts as a secure medium between AI agents and external products.
  3. MCP Client: It the interface where you can enter natural language prompts to trigger the configured actions on the MCP Server.
  4. MCP Server URL: This URL enables the AI clients to connect with the tools (products) securely.

Connect Zoho MCP and Zoho Sprints

  1. Login to Zoho MCP.
  2. Create a MCP server (the server name should only contain only alphanumeric characters and hyphens).
  3. Add tools (Products) by clicking the Add Tools button.  

  4. Search and select Zoho Sprints.
  5. Select the actions that you would like the AI to carry out for you. 

  6. Click Add Now.
    The actions will be added to the MCP server. 

  7. Now, switch to the Connect tab in the left panel. 

The goal of integrating Zoho MCP and Zoho Sprints is to reduce manual work of the developers, sprint owners, and product owners.
 
Now, connect this Server URL with the MCP Clients.

Connect with Claude 

If you choose Claude as your AI agent, you need to add the Server URL in Claude to enable secure access to your Zoho Sprints data.
  1. Navigate to https://claude.ai/settings/connectors.
  2. Click Add custom connector.
  3. Enter the connector name and MCP server URL.
  4. Click Add.
Once you connect it with Claude, you can create a new chat and ask Claude to fetch or update the required information in Zoho Sprints using natural language.

Notes
Note: Provide Workspace ID in the chat window to ensure that the AI client can perform the required action in the workspace.  
 
For example: You can generate a report based on the backlog items available in the workspace. 




  

Connect with Cursor 

Cursor AI is the first AI code editor. You can enable AI agent to securely perform real-time actions without leaving your coding workspace.
  1. Navigate to Connect tab in Zoho MCP.
  2. In the MCP Clients section, switch to Cursor

  3. Click the 'Add to Cursor' button for automatic setup. You can also setup manually by following the steps below:
  4. Open Cursor and navigate to settings (⇧ + ⌘ + J).
  5. Go to the MCP Tools tab and click New MCP Server. 
  6. Copy and paste the following JSON configuration below, then save it using CMD + S or CTRL + S.
  7. Activate Agent Mode. 
    Make sure the chat is set to Agent mode to access Zoho MCP tools within Cursor. taz
  1. {
  2.         "mcpServers": {
  3. "ZohoMCP": {
  4.             "command": "npx",
  5.             "args": [
  6.                 "mcp-remote",
  7.                 "https://zoho-sprints-server-922466879.zohomcp.com/mcp/9de168bbecc****6318b0738af2a6/message",
  8.                 "--transport",
  9.                 "http-only"
  10.             ]
  11.         }
  12.         }
  13. }
 
Notes
Note: MCP server key help connect tools with AI agents. When the key is compromised, anyone with it can access sensitive and confidential information of the connected account. Secure the key safely.  

Connect with Windsurf  

Windsurf, an advanced AI coding assistant, can be integrated with Zoho Sprints through Zoho MCP. You can easily handle real-time actions right from your coding environment by establishing this connection.
  1. Open Windsurf settings (⌘ + ,)
  2. Go to the Cascade tab and click Add Server.
  3. Select Add custom server +.
Add the following JSON configuration, replacing the placeholder key with your MCP key from below:
  1. {
  2.     "mcpServers": {
  3.         "ZohoMCP": {
  4.             "command": "npx",
  5.             "args": [
  6.                 "mcp-remote",
  7.                 "https://zoho-sprints-server-922466879.zohomcp.com/mcp/9de168bbecc822c578****b0738af2a6/message",
  8.                 "--transport",
  9.                 "http-only"
  10.             ]
  11.         }
  12.     }
  13. }
 
Notes
 Note: Your MCP server URL like a password. Protect it to avoid any unauthorized triggers that can access your sensitive data.  

Connect with VS Code  

Use AI agent directly from within the Visual Studio code with Zoho MCP. The AI assistant can perform real-time actions securely without having to switch from your coding workspace.  
 
Notes
 Note: You must have GitHub Copilot enabled and set to Agent mode in Visual Studio Code for Zoho MCP to function correctly. 
  1. Navigate to Connect tab in Zoho MCP.
  2. In the MCP Clients section, switch to VS Code.
  3. You can first try clicking the "Add to VS Code" button for automatic setup. Otherwise, you can follow the below mentioned steps to add it manually.
  4. Open the Visual Studio Code Command Palette (⇧ + ⌘ + P on Mac, Ctrl + Shift + P on Windows)
  5. Type "MCP: Add Server..." and press Enter.
  6. Choose "HTTP (HTTP or Server-Sent Events)" and press Enter.
  7. Paste your MCP key from below into the "Server Key" field and press Enter.
  8. Provide a server name and press Enter.
  9. Make sure GitHub Copilot is set to Agent mode.
  10. Ask GitHub Copilot to use tools from your Zoho MCP server.

Connect with any other MCP Client  

If your AI agent, IDE, or automation tool supports the Model Context Protocol, you just need to paste the Server URL.
 
Transport type  
Zoho MCP uses HTTP (Streamable HTTP) transport. Select this if your client asks you to choose: HTTP / Streamable HTTP
 
JSON config snippet  
If your client accepts a JSON config file (common in IDE-based agents), paste this block:
  1. {
  2.     "mcpServers": {
  3.         "ZohoMCP": {
  4.             "command": "npx",
  5.             "args": [
  6.                 "mcp-remote",
  7.                 "https://zoho-sprints-server-922466879.zohomcp.com/mcp/9de168bbecc822c578****b0738af2a6/message",
  8.                 "--transport",
  9.                 "http-only"
  10.             ]
  11.         }
  12.     }
  13. }
 
General connection steps  
  1. Open your client's MCP or integrations settings
  2. Add a new MCP server — look for Add server, New connection, or a mcp.json config file.
  3. Set transport to HTTP or Streamable HTTP.
  4. Paste the MCP URL from above into the server URL field.
  5. Save and enable Agent mode or equivalent in your client.
You can contact our support at support@zohomcp.com if you have any questions or doubts along the way.


        Create. Review. Publish.

        Write, edit, collaborate on, and publish documents to different content management platforms.

        Get Started Now


          Access your files securely from anywhere

            Zoho CRM Training Programs

            Learn how to use the best tools for sales force automation and better customer engagement from Zoho's implementation specialists.

            Zoho CRM Training
              Redefine the way you work
              with Zoho Workplace

                Zoho DataPrep Personalized Demo

                If you'd like a personalized walk-through of our data preparation tool, please request a demo and we'll be happy to show you how to get the best out of Zoho DataPrep.

                Zoho CRM Training

                  Create, share, and deliver

                  beautiful slides from anywhere.

                  Get Started Now


                    Zoho Sign now offers specialized one-on-one training for both administrators and developers.

                    BOOK A SESSION







                                Quick LinksWorkflow AutomationData Collection
                                Web FormsEnterpriseOnline Data Collection Tool
                                Embeddable FormsBankingBegin Data Collection
                                Interactive FormsWorkplaceData Collection App
                                CRM FormsCustomer ServiceAccessible Forms
                                Digital FormsMarketingForms for Small Business
                                HTML FormsEducationForms for Enterprise
                                Contact FormsE-commerceForms for any business
                                Lead Generation FormsHealthcareForms for Startups
                                Wordpress FormsCustomer onboardingForms for Small Business
                                No Code FormsConstructionRSVP tool for holidays
                                Free FormsTravelFeatures for Order Forms
                                Prefill FormsNon-Profit

                                Intake FormsLegal
                                Mobile App
                                Form DesignerHR
                                Mobile Forms
                                Card FormsFoodOffline Forms
                                Assign FormsPhotographyMobile Forms Features
                                Translate FormsReal EstateKiosk in Mobile Forms
                                Electronic Forms
                                Drag & drop form builder

                                Notification Emails for FormsAlternativesSecurity & Compliance
                                Holiday FormsGoogle Forms alternative GDPR
                                Form to PDFJotform alternativeHIPAA Forms
                                Email FormsFormstack alternativeEncrypted Forms

                                Wufoo alternativeSecure Forms

                                TypeformWCAG


                                    All-in-one knowledge management and training platform for your employees and customers.

                                              Create. Review. Publish.

                                              Write, edit, collaborate on, and publish documents to different content management platforms.

                                              Get Started Now




                                                                You are currently viewing the help pages of Qntrl’s earlier version. Click here to view our latest version—Qntrl 3.0's help articles.




                                                                    Manage your brands on social media


                                                                      • Desk Community Learning Series


                                                                      • Digest


                                                                      • Functions


                                                                      • Meetups


                                                                      • Kbase


                                                                      • Resources


                                                                      • Glossary


                                                                      • Desk Marketplace


                                                                      • MVP Corner


                                                                      • Word of the Day


                                                                      • Ask the Experts


                                                                        Zoho Sheet Resources

                                                                         

                                                                            Zoho Forms Resources


                                                                              Secure your business
                                                                              communication with Zoho Mail


                                                                              Mail on the move with
                                                                              Zoho Mail mobile application

                                                                                Stay on top of your schedule
                                                                                at all times


                                                                                Carry your calendar with you
                                                                                Anytime, anywhere




                                                                                      Zoho Sign Resources

                                                                                        Sign, Paperless!

                                                                                        Sign and send business documents on the go!

                                                                                        Get Started Now




                                                                                                Zoho TeamInbox Resources





                                                                                                          Zoho DataPrep Demo

                                                                                                          Get a personalized demo or POC

                                                                                                          REGISTER NOW


                                                                                                            Design. Discuss. Deliver.

                                                                                                            Create visually engaging stories with Zoho Show.

                                                                                                            Get Started Now








                                                                                                                                • Related Articles

                                                                                                                                • Export sprints

                                                                                                                                  You can export the sprint data in an xls or csv file and download it to use outside of the application. This can be used to transform data from Zoho Sprints into a file that you can process in third party apps or other in-house devices. Benefits ...
                                                                                                                                • Canceled sprints

                                                                                                                                  You can cancel the sprints that cannot be completed within the scheduled end date. Learn more. View canceled sprints Navigate to Report module. Select View by as Sprint Reports. Select Report type as Canceled Sprints. The canceled sprints will be ...
                                                                                                                                • Completed sprints

                                                                                                                                  This is a consolidated report of completed sprints. This report displays the sprint name, start date, actual and planned end dates, and completed estimation points. It includes an archived view of all the completed sprints in your project, displayed ...
                                                                                                                                • Create and manage sprints

                                                                                                                                  Zoho Sprints enables you to run your projects in a series of short term projects that are sprints. A sprint in agile project management can be defined as the shortest span of time within which a select few tasks are completed. The completion of those ...
                                                                                                                                • Data Encryption in Zoho Sprints

                                                                                                                                  Encryption is primarily used to safeguard the content of a message so that only the intended recipients can read it. This is done by replacing the content with unrecognizable data, which can be understood only by the intended recipient. Encryption ...
                                                                                                                                  Wherever you are is as good as
                                                                                                                                  your workplace

                                                                                                                                    Resources

                                                                                                                                    Videos

                                                                                                                                    Watch comprehensive videos on features and other important topics that will help you master Zoho CRM.



                                                                                                                                    eBooks

                                                                                                                                    Download free eBooks and access a range of topics to get deeper insight on successfully using Zoho CRM.



                                                                                                                                    Webinars

                                                                                                                                    Sign up for our webinars and learn the Zoho CRM basics, from customization to sales force automation and more.



                                                                                                                                    CRM Tips

                                                                                                                                    Make the most of Zoho CRM with these useful tips.



                                                                                                                                      Zoho Show Resources