Skip to main content
Glama
qpiai

Zoho Projects MCP Server

by qpiai

get_project

Retrieve specific project details from Zoho Projects by providing the project ID to access information for management and tracking.

Instructions

Get details of a specific project

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
project_idYesProject ID

Implementation Reference

  • Handler function that executes the get_project tool: makes API request to Zoho for project details and returns JSON-formatted response.
    private async getProject(projectId: string) { const data = await this.makeRequest( `/portal/${this.config.portalId}/projects/${projectId}` ); return { content: [{ type: "text", text: JSON.stringify(data, null, 2) }], }; }
  • Input schema definition for the get_project tool, specifying project_id as required string.
    inputSchema: { type: "object", properties: { project_id: { type: "string", description: "Project ID" }, }, required: ["project_id"], },
  • src/index.ts:216-226 (registration)
    Tool registration in the list of tools returned by ListToolsRequestHandler, defining name, description, and schema.
    { name: "get_project", description: "Get details of a specific project", inputSchema: { type: "object", properties: { project_id: { type: "string", description: "Project ID" }, }, required: ["project_id"], }, },
  • Identical handler function in the HTTP server implementation.
    private async getProject(projectId: string) { const data = await this.makeRequest( `/portal/${this.config.portalId}/projects/${projectId}` ); return { content: [{ type: "text", text: JSON.stringify(data, null, 2) }], }; }
  • Tool registration in the HTTP server version.
    { name: "get_project", description: "Get details of a specific project", inputSchema: { type: "object", properties: { project_id: { type: "string", description: "Project ID" }, }, required: ["project_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