Skip to main content
Glama
qpiai

Zoho Projects MCP Server

by qpiai

create_issue

Create new issues in Zoho Projects by specifying project ID, title, description, severity level, and due date to track and manage project problems.

Instructions

Create a new issue

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
descriptionNoIssue description
due_dateNoDue date (YYYY-MM-DD)
project_idYesProject ID
severityNoIssue severity
titleYesIssue title

Implementation Reference

  • The main handler function for the 'create_issue' tool. It extracts project_id and issue data from params, sends a POST request to the Zoho Projects API endpoint for creating issues, and returns a formatted response with the created issue details.
    private async createIssue(params: any) { const { project_id, ...issueData } = params; const data = await this.makeRequest( `/portal/${this.config.portalId}/projects/${project_id}/issues`, "POST", issueData ); return { content: [ { type: "text", text: `Issue created successfully:\n${JSON.stringify(data, null, 2)}`, }, ], };
  • The main handler function for the 'create_issue' tool (stdio version). It extracts project_id and issue data from params, sends a POST request to the Zoho Projects API endpoint for creating issues, and returns a formatted response with the created issue details.
    private async createIssue(params: any) { const { project_id, ...issueData } = params; const data = await this.makeRequest( `/portal/${this.config.portalId}/projects/${project_id}/issues`, "POST", issueData ); return { content: [ { type: "text", text: `Issue created successfully:\n${JSON.stringify(data, null, 2)}`, }, ], };
  • Input schema definition for the 'create_issue' tool, specifying parameters like project_id, title (required), description, severity, and due_date.
    inputSchema: { type: "object", properties: { project_id: { type: "string", description: "Project ID" }, title: { type: "string", description: "Issue title" }, description: { type: "string", description: "Issue description" }, severity: { type: "string", description: "Issue severity", enum: ["minor", "major", "critical"], }, due_date: { type: "string", description: "Due date (YYYY-MM-DD)" }, }, required: ["project_id", "title"], },
  • Input schema definition for the 'create_issue' tool (stdio version), specifying parameters like project_id, title (required), description, severity, and due_date.
    inputSchema: { type: "object", properties: { project_id: { type: "string", description: "Project ID" }, title: { type: "string", description: "Issue title" }, description: { type: "string", description: "Issue description" }, severity: { type: "string", description: "Issue severity", enum: ["minor", "major", "critical"], }, due_date: { type: "string", description: "Due date (YYYY-MM-DD)" }, }, required: ["project_id", "title"], },
  • Registration/dispatch of the 'create_issue' tool in the switch statement handling CallToolRequestSchema.
    case "create_issue": return await this.createIssue(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