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
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | Project ID |
Implementation Reference
- src/index.ts:648-655 (handler)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) }], }; }
- src/http-server.ts:651-658 (handler)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) }], }; }
- src/index.ts:217-226 (schema)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);
- src/http-server.ts:220-228 (schema)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"], },