Config is the same across clients — only the file and path differ.
{
"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.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in analytics
MCP Server for GCP environment for interacting with various Observability APIs.
⚡ A Simple / Speedy / Secure Link Shortener with Analytics, 100% run on Cloudflare.
MCP server for InsightSentry financial data API - market data, options, screeners, and more
MCP server for Google Lighthouse performance metrics
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 |