Skip to main content
Glama
qpiai

Zoho Projects MCP Server

by qpiai

get_portal

Retrieve detailed information about a specific Zoho Projects portal using its unique portal ID to access portal settings and configuration data.

Instructions

Get details of a specific portal

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
portal_idYesPortal ID

Implementation Reference

  • Core handler function for 'get_portal' tool: fetches portal details via Zoho API `/portal/${portalId}` 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) }], }; }
  • Input schema definition for 'get_portal' tool in the list_tools response, specifying 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:556-557 (registration)
    Tool dispatch registration in the CallToolRequestSchema handler switch statement.
    case "get_portal": return await this.getPortal(params.portal_id);
  • Identical core handler function for 'get_portal' tool in HTTP server variant.
    private async getPortal(portalId: string) { const data = await this.makeRequest(`/portal/${portalId}`); return { content: [{ type: "text", text: JSON.stringify(data, null, 2) }], }; }
  • Identical input schema for 'get_portal' tool in HTTP server variant.
    { name: "get_portal", description: "Get details of a specific portal", 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