Skip to main content
Glama
qpiai

Zoho Projects MCP Server

by qpiai

get_issue

Retrieve detailed information about a specific project issue in Zoho Projects using the project ID and issue ID.

Instructions

Get details of a specific issue

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
project_idYesProject ID
issue_idYesIssue ID

Implementation Reference

  • The handler function that executes the 'get_issue' tool by calling the Zoho API to retrieve specific issue details and returns a formatted text response.
    private async getIssue(projectId: string, issueId: string) { const data = await this.makeRequest( `/portal/${this.config.portalId}/projects/${projectId}/issues/${issueId}` ); return { content: [{ type: "text", text: JSON.stringify(data, null, 2) }], }; }
  • Identical handler function for the 'get_issue' tool in the HTTP server variant.
    private async getIssue(projectId: string, issueId: string) { const data = await this.makeRequest( `/portal/${this.config.portalId}/projects/${projectId}/issues/${issueId}` ); return { content: [{ type: "text", text: JSON.stringify(data, null, 2) }], }; }
  • src/index.ts:400-411 (registration)
    Registration of the 'get_issue' tool in the ListTools response, including name, description, and input schema.
    { name: "get_issue", description: "Get details of a specific issue", inputSchema: { type: "object", properties: { project_id: { type: "string", description: "Project ID" }, issue_id: { type: "string", description: "Issue ID" }, }, required: ["project_id", "issue_id"], }, },
  • Tool registration in the HTTP server variant's ListTools response.
    { name: "get_issue", description: "Get details of a specific issue", inputSchema: { type: "object", properties: { project_id: { type: "string", description: "Project ID" }, issue_id: { type: "string", description: "Issue ID" }, }, required: ["project_id", "issue_id"], }, },

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