Skip to main content
Glama
qpiai

Zoho Projects MCP Server

by qpiai

create_phase

Create a new project phase or milestone in Zoho Projects by specifying project ID, phase name, dates, and owner to organize project timelines and track progress.

Instructions

Create a new phase/milestone

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
end_dateNoEnd date (YYYY-MM-DD)
nameYesPhase name
owner_zpuidNoOwner user ZPUID
project_idYesProject ID
start_dateNoStart date (YYYY-MM-DD)

Implementation Reference

  • Handler function that executes the create_phase tool by destructuring params, calling makeRequest with POST to Zoho API endpoint for phases, and returning formatted success response.
    private async createPhase(params: any) { const { project_id, ...phaseData } = params; const data = await this.makeRequest( `/portal/${this.config.portalId}/projects/${project_id}/phases`, "POST", phaseData ); return { content: [ { type: "text", text: `Phase created successfully:\n${JSON.stringify(data, null, 2)}`, }, ], }; }
  • Identical handler function for the create_phase tool in the stdio server implementation.
    private async createPhase(params: any) { const { project_id, ...phaseData } = params; const data = await this.makeRequest( `/portal/${this.config.portalId}/projects/${project_id}/phases`, "POST", phaseData ); return { content: [ { type: "text", text: `Phase created successfully:\n${JSON.stringify(data, null, 2)}`, }, ], }; }
  • Tool registration in listTools response, including name, description, and input schema for create_phase.
    name: "create_phase", description: "Create a new phase/milestone", inputSchema: { type: "object", properties: { project_id: { type: "string", description: "Project ID" }, name: { type: "string", description: "Phase name" }, start_date: { type: "string", description: "Start date (YYYY-MM-DD)", }, end_date: { type: "string", description: "End date (YYYY-MM-DD)" }, owner_zpuid: { type: "string", description: "Owner user ZPUID" }, }, required: ["project_id", "name"], }, },
  • src/index.ts:470-486 (registration)
    Identical tool registration in listTools for the stdio server, including schema.
    name: "create_phase", description: "Create a new phase/milestone", inputSchema: { type: "object", properties: { project_id: { type: "string", description: "Project ID" }, name: { type: "string", description: "Phase name" }, start_date: { type: "string", description: "Start date (YYYY-MM-DD)", }, end_date: { type: "string", description: "End date (YYYY-MM-DD)" }, owner_zpuid: { type: "string", description: "Owner user ZPUID" }, }, required: ["project_id", "name"], }, },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/qpiai/zoho-projects-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server