Skip to main content
Glama
qpiai

Zoho Projects MCP Server

by qpiai

list_projects

Retrieve all projects from your Zoho Projects portal to view and manage your project portfolio.

Instructions

List all projects in a portal

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoPage number
per_pageNoItems per page

Implementation Reference

  • Core handler function executing the list_projects tool by making an authenticated API request to Zoho Projects to retrieve paginated list of projects and returning formatted JSON response.
    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) }], }; }
  • src/index.ts:202-215 (registration)
    Registration of the list_projects tool in the tools list returned by ListToolsRequestSchema, including name, description, and input schema.
    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, }, }, }, },
  • Core handler function executing the list_projects tool by making an authenticated API request to Zoho Projects to retrieve paginated list of projects and returning formatted JSON response.
    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) }], }; }
  • Registration of the list_projects tool in the tools list returned by ListToolsRequestSchema, including name, description, and input schema.
    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, }, }, }, },

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