Skip to main content
Glama

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

NameRequiredDescriptionDefault

No arguments

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": {}, "type": "object" }

Implementation Reference

  • 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); } }
  • 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);

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