Skip to main content
Glama
qpiai

Zoho Projects MCP Server

by qpiai

list_portals

Retrieve all available Zoho Projects portals to access and manage your project workspaces and organizational data.

Instructions

Retrieve all Zoho Projects portals

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Handler function that implements the core logic of the 'list_portals' tool by making an API request to Zoho's /portals endpoint and returning the response as a formatted text content block.
    private async listPortals() { const data = await this.makeRequest("/portals"); return { content: [{ type: "text", text: JSON.stringify(data, null, 2) }], }; }
  • Identical handler function for 'list_portals' tool in the stdio version of the server.
    private async listPortals() { const data = await this.makeRequest("/portals"); return { content: [{ type: "text", text: JSON.stringify(data, null, 2) }], }; }
  • Registration/dispatch logic in the CallToolRequestSchema handler that routes 'list_portals' calls to the listPortals method.
    case "list_portals": return await this.listPortals();
  • Tool registration entry in the ListToolsRequestSchema response defining the 'list_portals' tool's metadata, description, and input schema.
    name: "list_portals", description: "Retrieve all Zoho Projects portals", inputSchema: { type: "object", properties: {}, }, },
  • Input schema definition for the 'list_portals' tool, specifying an empty object (no required parameters).
    type: "object", properties: {}, }, },

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