Skip to main content
Glama
qpiai

Zoho Projects MCP Server

by qpiai

get_project

Retrieve detailed information about a specific Zoho Projects project using its unique project ID to access project data and status.

Instructions

Get details of a specific project

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
project_idYesProject ID

Implementation Reference

  • Core handler function for 'get_project' tool. Fetches project details via Zoho API using makeRequest and returns JSON-formatted response as MCP content.
    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) }], }; }
  • Identical core handler function for 'get_project' tool in HTTP server variant.
    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 'get_project' tool, specifying required project_id parameter.
    name: "get_project", description: "Get details of a specific project", inputSchema: { type: "object", properties: { project_id: { type: "string", description: "Project ID" }, }, required: ["project_id"], }, },
  • src/index.ts:562-563 (registration)
    Tool dispatch/registration in CallToolRequestSchema handler switch statement.
    case "get_project": return await this.getProject(params.project_id);
  • Identical input schema for 'get_project' in HTTP server.
    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