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, dates, and visibility settings to organize work and track progress.

Instructions

Create a new project

Input Schema

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

Implementation Reference

  • Handler function that executes the create_project tool by sending a POST request to the Zoho Projects API to create a new project using the provided parameters.
    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)}`,
          },
        ],
      };
    }
  • Handler function that executes the create_project tool by sending a POST request to the Zoho Projects API to create a new project using the provided parameters.
    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)}`,
          },
        ],
      };
    }
  • Input schema definition for the create_project tool, specifying required 'name' and optional fields like description, dates, and public status.
      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"],
      },
    },
    {
  • Input schema definition for the create_project tool, specifying required 'name' and optional fields like description, dates, and public status.
    {
      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"],
      },
    },
  • Registration in the tool dispatch switch statement that routes calls to create_project to the handler method.
    case "create_project":
      return await this.createProject(params);

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