Skip to main content
Glama

list_zoom_room_locations

Retrieve Zoom Room locations by specifying page size, number, and parent location ID to efficiently manage and organize Zoom resources.

Input Schema

NameRequiredDescriptionDefault
page_numberNoPage number
page_sizeNoNumber of records returned
parent_location_idNoParent location ID

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "page_number": { "description": "Page number", "minimum": 1, "type": "number" }, "page_size": { "description": "Number of records returned", "maximum": 300, "minimum": 1, "type": "number" }, "parent_location_id": { "description": "Parent location ID", "type": "string" } }, "type": "object" }

Implementation Reference

  • The handler function that implements the list_zoom_room_locations tool by making a GET request to the Zoom API '/rooms/locations' endpoint with optional pagination and filtering parameters.
    handler: async ({ page_size, page_number, parent_location_id }) => { try { const params = {}; if (page_size) params.page_size = page_size; if (page_number) params.page_number = page_number; if (parent_location_id) params.parent_location_id = parent_location_id; const response = await zoomApi.get('/rooms/locations', { params }); return handleApiResponse(response); } catch (error) { return handleApiError(error); } }
  • Zod schema defining the input parameters for the list_zoom_room_locations tool.
    schema: { page_size: z.number().min(1).max(300).optional().describe("Number of records returned"), page_number: z.number().min(1).optional().describe("Page number"), parent_location_id: z.string().optional().describe("Parent location ID") },
  • src/server.js:56-56 (registration)
    Registration of the zoomRoomsTools array containing the list_zoom_room_locations tool into the MCP server.
    registerTools(zoomRoomsTools);

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/mattcoatsworth/zoom-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server