Skip to main content
Glama
qpiai

Zoho Projects MCP Server

by qpiai

create_project

Create a new project in Zoho Projects by specifying name, description, start and end dates, and visibility settings to organize work and track progress.

Instructions

Create a new project

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
descriptionNoProject description
end_dateNoEnd date (YYYY-MM-DD)
is_publicNoIs project public
nameYesProject name
start_dateNoStart date (YYYY-MM-DD)

Implementation Reference

  • The core handler function for the 'create_project' tool. It sends a POST request to the Zoho Projects API endpoint `/portal/{portalId}/projects` with the provided parameters and returns a formatted MCP response containing the created project data.
    private async createProject(params: any) { const data = await this.makeRequest( `/portal/${this.config.portalId}/projects`, "POST", params ); return { content: [ { type: "text", text: `Project created successfully:\n${JSON.stringify(data, null, 2)}`, }, ], }; }
  • Identical handler function for the 'create_project' tool in the HTTP server implementation. Makes POST request to Zoho API and returns MCP-formatted response.
    private async createProject(params: any) { const data = await this.makeRequest( `/portal/${this.config.portalId}/projects`, "POST", params ); return { content: [ { type: "text", text: `Project created successfully:\n${JSON.stringify(data, null, 2)}`, }, ], }; }
  • JSON schema defining the input parameters for the create_project tool, requiring 'name' and optionally accepting description, start_date, end_date, and is_public.
    inputSchema: { type: "object", properties: { name: { type: "string", description: "Project name" }, description: { type: "string", description: "Project description" }, start_date: { type: "string", description: "Start date (YYYY-MM-DD)", }, end_date: { type: "string", description: "End date (YYYY-MM-DD)" }, is_public: { type: "boolean", description: "Is project public", default: false, }, }, required: ["name"], },
  • src/index.ts:227-248 (registration)
    The tool descriptor registration in the listTools response, specifying name, description, and input schema for the create_project tool.
    { name: "create_project", description: "Create a new project", inputSchema: { type: "object", properties: { name: { type: "string", description: "Project name" }, description: { type: "string", description: "Project description" }, start_date: { type: "string", description: "Start date (YYYY-MM-DD)", }, end_date: { type: "string", description: "End date (YYYY-MM-DD)" }, is_public: { type: "boolean", description: "Is project public", default: false, }, }, required: ["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