Skip to main content
Glama

get_user

Retrieve specific user details from the Zoom API MCP Server by providing a user ID or email address, enabling structured user management and authentication.

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

  • The handler function that implements the core logic of the 'get_user' tool by fetching user details from the Zoom API using the provided user ID or email.
    handler: async ({ user_id }) => { try { const response = await zoomApi.get(`/users/${user_id}`); return handleApiResponse(response); } catch (error) { return handleApiError(error); } }
  • The Zod input schema for the 'get_user' tool, specifying the required 'user_id' parameter.
    schema: { user_id: z.string().describe("The user ID or email address") },
  • src/server.js:47-47 (registration)
    Registration of the usersTools array (containing the 'get_user' tool) with the MCP server via the registerTools function.
    registerTools(usersTools);
  • src/server.js:3-3 (registration)
    Import of the usersTools module that defines the 'get_user' tool.
    import { usersTools } from './tools/users.js';

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