Skip to main content
Glama

get_phone_user

Retrieve phone-related details for a specific Zoom user by providing their user ID or email address, enabling efficient management of user phone settings through the Zoom API MCP Server.

Input Schema

NameRequiredDescriptionDefault
user_idYesThe user ID or email address

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "user_id": { "description": "The user ID or email address", "type": "string" } }, "required": [ "user_id" ], "type": "object" }

Implementation Reference

  • Handler function that retrieves a phone user's information by making a GET request to the Zoom API endpoint `/phone/users/${user_id}` and handles the response or error.
    handler: async ({ user_id }) => { try { const response = await zoomApi.get(`/phone/users/${user_id}`); return handleApiResponse(response); } catch (error) { return handleApiError(error); }
  • Zod schema defining the input parameter `user_id` as a string for the get_phone_user tool.
    schema: { user_id: z.string().describe("The user ID or email address") },
  • src/server.js:51-51 (registration)
    Registers the phoneTools array, which includes the get_phone_user tool, by calling registerTools that iterates and calls server.tool for each.
    registerTools(phoneTools);

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