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
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | Yes | The 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
- src/tools/users.js:57-64 (handler)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); } }
- src/tools/users.js:54-56 (schema)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';