Skip to main content
Glama

update_account_settings

Modify account settings for Zoom users through the MCP server by specifying updated configurations. This tool ensures validated and secure adjustments using the Zoom API.

Input Schema

NameRequiredDescriptionDefault
settingsYesAccount settings to update

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "settings": { "additionalProperties": true, "description": "Account settings to update", "properties": {}, "type": "object" } }, "required": [ "settings" ], "type": "object" }

Implementation Reference

  • The handler function for the 'update_account_settings' tool. It sends a PATCH request to the Zoom API endpoint '/accounts/me/settings' with the provided settings and handles the response or error.
    handler: async ({ settings }) => { try { const response = await zoomApi.patch('/accounts/me/settings', settings); return handleApiResponse(response); } catch (error) { return handleApiError(error); } }
  • The input schema definition for the 'update_account_settings' tool, which accepts an arbitrary object of account settings using Zod's passthrough.
    schema: { settings: z.object({}).passthrough().describe("Account settings to update")
  • src/server.js:49-49 (registration)
    Registration of the accountTools array (containing 'update_account_settings') to the MCP server via the registerTools function.
    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