Skip to main content
Glama
qpiai

Zoho Projects MCP Server

by qpiai

get_portal

Retrieve portal details by ID from Zoho Projects to access project management information and settings.

Instructions

Get details of a specific portal

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
portal_idYesPortal ID

Implementation Reference

  • Core implementation of the get_portal tool handler. Fetches portal details from Zoho API endpoint `/portal/${portalId}` via makeRequest and formats response as MCP content block.
    private async getPortal(portalId: string) { const data = await this.makeRequest(`/portal/${portalId}`); return { content: [{ type: "text", text: JSON.stringify(data, null, 2) }], }; }
  • Core implementation of the get_portal tool handler. Fetches portal details from Zoho API endpoint `/portal/${portalId}` via makeRequest and formats response as MCP content block.
    private async getPortal(portalId: string) { const data = await this.makeRequest(`/portal/${portalId}`); return { content: [{ type: "text", text: JSON.stringify(data, null, 2) }], }; }
  • Tool registration entry for get_portal, including name, description, and input schema defining required 'portal_id' parameter.
    name: "get_portal", description: "Get details of a specific portal", inputSchema: { type: "object", properties: { portal_id: { type: "string", description: "Portal ID" }, }, required: ["portal_id"], }, },
  • src/index.ts:189-198 (registration)
    Tool registration entry for get_portal, including name, description, and input schema defining required 'portal_id' parameter.
    name: "get_portal", description: "Get details of a specific portal", inputSchema: { type: "object", properties: { portal_id: { type: "string", description: "Portal ID" }, }, required: ["portal_id"], }, },
  • Input schema for get_portal tool requiring a string portal_id.
    inputSchema: { type: "object", properties: { portal_id: { type: "string", description: "Portal ID" }, }, required: ["portal_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