Skip to main content
Glama
qpiai

Zoho Projects MCP Server

by qpiai

list_projects

Retrieve all projects from your Zoho Projects portal with pagination support to manage project overview and organization.

Instructions

List all projects in a portal

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoPage number
per_pageNoItems per page

Implementation Reference

  • Core handler function for 'list_projects' tool. Fetches paginated list of projects from the configured Zoho portal via API and returns formatted JSON response as MCP content.
    private async listProjects(page: number = 1, perPage: number = 10) { const data = await this.makeRequest( `/portal/${this.config.portalId}/projects?page=${page}&per_page=${perPage}` ); return { content: [{ type: "text", text: JSON.stringify(data, null, 2) }], }; }
  • Identical core handler function for 'list_projects' tool in the stdio version of the server.
    private async listProjects(page: number = 1, perPage: number = 10) { const data = await this.makeRequest( `/portal/${this.config.portalId}/projects?page=${page}&per_page=${perPage}` ); return { content: [{ type: "text", text: JSON.stringify(data, null, 2) }], }; }
  • Input schema definition for the list_projects tool, specifying optional pagination parameters.
    name: "list_projects", description: "List all projects in a portal", inputSchema: { type: "object", properties: { page: { type: "number", description: "Page number", default: 1 }, per_page: { type: "number", description: "Items per page", default: 10, }, }, }, },
  • Input schema definition for the list_projects tool in stdio server version.
    name: "list_projects", description: "List all projects in a portal", inputSchema: { type: "object", properties: { page: { type: "number", description: "Page number", default: 1 }, per_page: { type: "number", description: "Items per page", default: 10, }, }, }, },
  • Tool dispatch/registration in the CallToolRequestSchema switch statement, calling the handler.
    case "list_projects": return await this.listProjects(params.page, params.per_page);

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