get_account_profile
Retrieve detailed account profile information from Zoom using the Zoom API MCP Server. This tool enables access to structured data for managing and organizing Zoom resources effectively.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/account.js:42-49 (handler)The handler function for the 'get_account_profile' tool. It retrieves the account profile information by making a GET request to the Zoom API endpoint '/accounts/me' and handles the response or error appropriately.handler: async () => { try { const response = await zoomApi.get('/accounts/me'); return handleApiResponse(response); } catch (error) { return handleApiError(error); } }
- src/tools/account.js:41-41 (schema)The schema definition for the 'get_account_profile' tool, which is an empty object indicating that no input parameters are required.schema: {},
- src/server.js:49-49 (registration)The registration of the accountTools array, which includes the 'get_account_profile' tool, by calling registerTools. This function loops over the tools and registers each one with the MCP server using server.tool().registerTools(accountTools);