{
"mcpServers": {
"ZohoAnalyticsMCP": {
"url": "<hosted-mcp-server-url>",
"type": "http"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
The Zoho Analytics MCP Server (Beta) implements the Model Context Protocol (MCP), a standardized interface that enables AI models to interact seamlessly with applications. This middleware solution bridges the connection between AI agents and Zoho Analytics, providing powerful data analysis capabilities through a unified interface.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 31 days ago. 9 stars.
Will it work with my client?
Transport: stdio, sse, http. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Dynamic problem-solving through sequential thought chains
A Model Context Protocol server for searching and analyzing arXiv papers
An open-source AI agent that brings the power of Gemini directly into your terminal.
The official Python SDK for Model Context Protocol servers and clients
MCP Security Weekly
Get CVE alerts and security updates for Analytics Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
The Zoho Analytics MCP Server (Beta) implements the Model Context Protocol (MCP), a standardized interface that enables AI models to interact seamlessly with applications. This middleware solution bridges the connection between AI agents and Zoho Analytics, providing powerful data analysis capabilities through a unified interface.
Note: The Zoho Analytics MCP project is currently in its early development (Beta) phase. As we continue to improve and refine its features, the available tools and functionalities may change.
System Requirements
To build the Zoho Analytics MCP server from source, you need to have Docker installed on your system. Before setup, please make sure to have docker and a container runtime installed in your device.
Pull Docker Image
If you prefer to use the pre-built Docker image, you can pull it directly from Docker Hub:
docker pull zohoanalytics/mcp-server:latest
Obtaining OAuth Credentials To configure the Zoho Analytics MCP Server, you need to provide OAuth credentials (Client ID, Client Secret, and Refresh Token) as environment variables. Follow these steps to generate them:
Required Environment Variables
Configure these essential variables before integrating with the MCP Hosts:
| Variable | Description |
|---|---|
| ANALYTICS_CLIENT_ID | Your Zoho Analytics OAuth client ID |
| ANALYTICS_CLIENT_SECRET | Your Zoho Analytics OAuth client secret |
| ANALYTICS_REFRESH_TOKEN | Your Zoho Analytics OAuth refresh token |
| ANALYTICS_ORG_ID | Your Zoho Analytics organization ID |
| ANALYTICS_MCP_DATA_DIR | Directory for storing temporary data files |
| ACCOUNTS_SERVER_URL | Your Zoho Analytics Accounts Domain URL (https://accounts.zoho.com) |
| ANALYTICS_SERVER_URL | Your Zoho Analytics Accounts Domain URL (https://analyticsapi.zoho.com) |
Other Environment variables
The following is a list of other optional environment variables:
| QUERY_DATA_RESULT_ROW_LIMITS (Optional) | Number of rows outputted by the query_data tool. Default row limit - 20 |
| QUERY_DATA_POLLING_INTERVAL (Optional) | Sleep Time between consecutive polls to check job status (JOB COMPLETED, JOB IN QUEUE; For more, please refer to analytics v2 api documentation). Default sleep time - 4 seconds |
| QUERY_DATA_QUEUE_TIMEOUT (Optional) | This is the amount of time allowed between job submit time in the queue and job processing (query processing) time. Default time in queue - 120 seconds |
| QUERY_DATA_QUERY_EXECUTION_TIMEOUT (Optional) | The amount of time allowed for query execution. Default execut |