Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| HTTP_PORT | No | Port for HTTP server (optional, for remote access) | 3001 |
| ALLOWED_HOSTS | No | Allowed hosts for HTTP server (optional, for remote access) | 127.0.0.1,localhost |
| ZOHO_CLIENT_ID | Yes | Your Zoho OAuth client ID | |
| ZOHO_PORTAL_ID | Yes | Your Zoho Projects portal ID | |
| ALLOWED_ORIGINS | No | Allowed origins for HTTP server (optional, for remote access) | http://localhost:3000 |
| ZOHO_API_DOMAIN | No | The Zoho API domain for your region (e.g., https://projectsapi.zoho.com for US, https://projectsapi.zoho.in for India) | https://projectsapi.zoho.com |
| ZOHO_ACCESS_TOKEN | Yes | Your Zoho OAuth access token | |
| ZOHO_CLIENT_SECRET | Yes | Your Zoho OAuth client secret | |
| ZOHO_REFRESH_TOKEN | Yes | Your Zoho OAuth refresh token | |
| ZOHO_ACCOUNTS_DOMAIN | No | The Zoho accounts domain for your region (e.g., https://accounts.zoho.com for US, https://accounts.zoho.in for India) | https://accounts.zoho.com |
Schema
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_portals | Retrieve all Zoho Projects portals |
| get_portal | Get details of a specific portal |
| list_projects | List all projects in a portal |
| get_project | Get details of a specific project |
| create_project | Create a new project |
| update_project | Update an existing project |
| delete_project | Delete a project (moves to trash) |
| list_tasks | List tasks from a project or portal |
| get_task | Get details of a specific task |
| create_task | Create a new task in a project |
| update_task | Update a task |
| delete_task | Delete a task |
| list_issues | List issues from a project or portal |
| get_issue | Get details of a specific issue |
| create_issue | Create a new issue |
| update_issue | Update an issue |
| list_phases | List phases/milestones from a project |
| create_phase | Create a new phase/milestone |
| search | Search across portal or project |
| list_users | List users in a portal or project |